mysql语句去重查询总数_mysql查询语句

2.查询指定列

select 列名,列名 from 表名

例:select code,name from test

3.修改结果集的列名 as

select 列名 as ‘显示的字‘ from 表名

例:select code as ‘代号‘,name as ‘姓名‘ from test

4.条件查询

select * from 表名 where 条件

例:select * from test where code=‘n003‘

5.多条件查询

或者 or:select * from 表名 where 条件 or 条件

例:select * from test where code=‘p003‘ or nation=‘n001‘

并且 and:select * from 表名 where 条件 and 条件

例:select * from test where code=‘p004‘ and nation=‘n001‘

6.范围查询 (某一列的内容是谁到谁之间的数据)

例:两种写法:查找汽车价格在40到60之间

(1)select * from car where price>=40 and price>=60

(2)select * from car where price between 40 and 60

7.离散查询

查询汽车价格在(10、20、30、40、50、60)中出现的信息 in

例:两种写法

(1)select * from car where price=10 or price=20 o

你可能感兴趣的:(mysql语句去重查询总数)