SQL—查询的基本用法—查
select这个是查询和其他语法的起点
1、查询表中的全部内容:
语法:select * from 表名
2、条件查找
语法:select 列名 from 表名 where 查询条件表达试
3、查询排序
语法:select 列名>from 表名 order by 排序的列名[asc或desc]
4、模糊查询
语法:select * from where 表名 like 条件(a%)
5、查询表中不重复的数据
语法:select distinct * from 表名
注:distinct 关键词用于返回唯一不同的值。
6、between用法
语法:select * from表名 where 列名 between 范围1 and 范围2
7、in 用法
语法:select * from表名 where 名 in (具体值,具体值)