DBeaver首选项

1.自动保存

DBeaver首选项

2.SQL格式化

DBeaver首选项

3.自定义模板

DBeaver首选项

名称 描述 模式
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}’);

lj left 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.修改数据集获取大小

DBeaver首选项

5.显示行号

DBeaver首选项

6.取消自动检测更新

DBeaver首选项

上一篇:hihocoder #1032 : 最长回文子串【 manacher算法实现 】


下一篇:学习Spring Boot:(二十四)多数据源配置与使用