PL/SQL的快捷键设置

时间:2023-02-02 05:55:55

PL/SQL用来连接Oracle数据库的一种工具,它可以设置快捷方式,以便于我们快速的操作。

PL/SQL设置快捷键
    tools->Preferences(首选项)->User Interface->Editor
将editor中的AutoReplace的Enabled选中,同时配置好文件路径 C:\Program Files (x86)\PLSQL Developer\PlugIns\shortcut.txt  ,自己可以在PlugIns下建立shoutcut.txt文件。

PL/SQL的快捷键设置

编写shortcut.txt文件,  如设置快捷键输入s+空格,即可快速生成select * from。
     s=select * from
     w=where
     u=update
     se=select
     i=insert into
     ob=order by
     gb=group by
     dis=distinct
     li=like '%%'
     inn=is not null
     ct=create table
快速执行语句为F8(不打开新窗口),F5(会打开新窗口)