【OracleSQL】常用自動替換總結

YangZhehan發表於2024-08-21

OracleSql的IDE:PLSql Developer可以設定自動替換,簡化sql程式碼輸入,提高效率

自動替換檔案型別為txt,自動替換的預設儲存檔案為AutoReplace.txt

自動替換格式:<簡寫程式碼>=<詳細程式碼>

cu=creat user <user_name> identified by <password>;

cku=select username from dba_users;

aup=alter user <user_name> identified by <password>;

du=drop user <user_name> (cascade);

相關文章