查询语句
select 列 from table where 条件
更新语句
update table set 列=‘值’,列=‘值’······;
插入语句
insert into table(列,列,······) values(’值‘,’值‘,······)
删除语句
delete from table where 列=’值‘
查询语句
select 列 from table where 条件
更新语句
update table set 列=‘值’,列=‘值’······;
插入语句
insert into table(列,列,······) values(’值‘,’值‘,······)
删除语句
delete from table where 列=’值‘
转载于:https://www.cnblogs.com/reaptomorrow-flydream/p/6154987.html