insert into 插入数据语句
insert into 表名(1,2,3)values(1,2,3)
insert into values(1,2,3)
delete 删除数据语句
delete from 表名 [ where conditino restriction]
dorp 是删除整个表结构而delete是删除符合删除条件的表中数据 而表机构不变
update 更新数据语句
update 表名 set 1=2,2=3,3=4 .......[ where condition restriction ]
本文链接:https://my.lmcjl.com/post/3023.html
展开阅读全文
4 评论