SQL基本增删改查语句

增加 insert  into 表名(列名1,列名2) value (值1,值2
修改 update 表名 set  列名=值,列名1=1  where 条件
 删除 delete from 表名 where条件
查询 select 列名1,列名2 from 表名 where 条件

发布了72 篇原创文章 · 获赞 10 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/BOGEWING/article/details/103118234