PL/SQL 快捷键设置

se = select

sf = select * from

scf = select count(*) from

gb = group by

ob = order by

tt = truncate table

ii = insert into

ct = create table

alt = alter table

sc = select count(*) from

co = count(*)

de = delete

df = delete from

dbmso = dbms_output.put_line()

@ = @link

std = statis_date

stm = statis_month

ivd = iv_date

ivm = iv_month

rm = row_number() over(partition by order by )

rmod = row_number() over(order by desc )

max = max()

min = min()

nvl = nvl(, 0)

ro = round(, 4)

cmt = commit ;

sum = sum()

trim = trim()

cou = count()

cd = count(distinct )

cdu = count(distinct user_id)

cdg = count(distinct group_id)

cds = count(distinct serv_number)

dis = distinct

bicp = select * from bicp.bi_res_extend_info@link29mk where rownum < 2 for update ;

ei = execute immediate '' ;

coco = comment on column

cw = case when

decode = decode(, , , ) ,

ph = /*+parallel(t, 4)*/

oh = /*+ordered*/

fh = /*+first_rows*/

nmh = /*+no merge*/

tc = to_char(,)

td = to_date(,)

tn = to_number()

sys = select * from MASASYS.TB_SYS_DATABASE_OBJECTS_CONF t where rownum < 2 for update;

sdtf = select /*+parallel(t, 4)*/ distinct lower(t.owner||'.'||t.name) from all_source t where lower(t.text) like '%insert%%' ;

猜你喜欢

转载自millerrch.iteye.com/blog/1873784