其他分享
首页 > 其他分享> > DBeaver首选项

DBeaver首选项

作者:互联网

1.自动保存

在这里插入图片描述

2.SQL格式化

在这里插入图片描述

3.自定义模板

在这里插入图片描述

名称描述模式
bak跨库备份表

create table n e w d a t a b a s e . {newdatabase}. newdatabase.{newtable} like o l d d a t a b a s e . {olddatabase}. olddatabase.{oldtable};
insert into n e w d a t a b a s e . {newdatabase}. newdatabase.{newtable} select * from o l d d a t a b a s e . {olddatabase}. olddatabase.{oldtable};

df删除全部数据

delete from
${table};

dfw有条件删除数据

delete from
${table}
where c o l u m n = ′ {column}=' column=′{value}’;

ins插入数据

insert into
t a b l e ( {table}( table({column})
values(’${value}’);

ljleft join

left join

sc0统计行数

select count(0)
from ${table};

sf查询全部数据

select *
from ${table}

sfw有条件查询数据

select *
from ${table}
where c o l u m n = ′ {column}=' column=′{value}’;

upd更新全部数据

update
${table}
set c o l u m n = ′ {column}=' column=′{value}’;

updw有条件更新数据

update
${table}
set c o l u m n = ′ {column}=' column=′{value}‘
where c o l u m n = ′ {column}=' column=′{value}’;

4.修改数据集获取大小

在这里插入图片描述

5.显示行号

在这里插入图片描述

6.取消自动检测更新

在这里插入图片描述

标签:column,DBeaver,value,olddatabase,table,newdatabase,首选项,select
来源: https://blog.csdn.net/qq_41521682/article/details/122694011