SQL 基本语句

查询语句

select 列 from table where 条件 

更新语句

update table set 列=‘值’,列=‘值’······;

插入语句

insert into table(列,列,······) values(’值‘,’值‘,······)

删除语句

delete from table where 列=’值‘

 

posted @ 2016-12-10 10:17  章朔  阅读(554)  评论(0编辑  收藏  举报