名称 | 描述 | 模式 |
---|---|---|
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}; |
df | 删除全部数据 | delete from |
dfw | 有条件删除数据 | delete from |
ins | 插入数据 | insert into |
lj | left join | left join |
sc0 | 统计行数 | select count(0) |
sf | 查询全部数据 | select * |
sfw | 有条件查询数据 | select * |
upd | 更新全部数据 | update |
updw | 有条件更新数据 | update |