常用的SQL语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用的SQL语句相关的知识,希望对你有一定的参考价值。
insert into 表名 字段名 values(值列表)
delete 表名 where 字段名=字段值
update 表名 set 字段名=新的字段值 where 字段名=字段值
查询单个字段
select 字段名 from 表名
查询所有字段加条件
select * from 表名 where 条件
排序
select * from 表名 order by 字段
查询加条件之后 分组 再加条件
select 字段a from 表名 where 条件 group by 字段a having 条 件
表联接
select * from 表 a left join 表 b on a.id=b.id
select * from 表 a inner join 表 b on a.id=b.id
以上是关于常用的SQL语句的主要内容,如果未能解决你的问题,请参考以下文章