SQL简单语句

1.创建表语句

create table 表名 ( IF NOT EXISTS ) 

2.插入语句

insert into 表名 (属性名 ) values(‘值’ )

3.删除语句

delete from 表名  where 条件

4.更新语句

update 表名 set 属性 = ‘值’ where 条件

5.查询语句

select * from 表名 where 条件 and 条件 order by 属性名 desc limit 10

like  between  [not]in 

    原文作者:Mark_
    原文地址: https://www.jianshu.com/p/6e62334d3c28
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞