数据库操作语言
1. 插入数据
insert into 表名(列1,列2,... ) values(值1,值2,。。。);
insert into 表名 values(值1,值2,。。。);
2. 更新数据
update 表名 set 列名=值 where 条件;
3. 删除数据
delete from 表名 where 条件; (删完再加id累加)
truncate 表名 (删完再加id从0记)
insert into 表名(列1,列2,... ) values(值1,值2,。。。);
insert into 表名 values(值1,值2,。。。);
update 表名 set 列名=值 where 条件;
delete from 表名 where 条件; (删完再加id累加)
truncate 表名 (删完再加id从0记)