今天爱分享给大家带来DML语言-插入语句,希望能够帮助到各位。
1、插入语句
格式:insert into 表名(列名1,列名2,...) values(值1,值2,...); 演示:insert into category(cid,cname) values(1,'电视'); 注意:commit;
2、修改语句
格式:update 表名 set 列名1=值1,列名2=值2,... where 查询条件; 演示:update category set cname='汽车' where cid = 1; 注意:commit;
3、修改语句修改语句
格式:delete from 表名 where 查询条件; 演示:delete from category where cid = 1; 注意:commit;