博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql 基础3
阅读量:5024 次
发布时间:2019-06-12

本文共 3037 字,大约阅读时间需要 10 分钟。

 

1. 逗号是个好东西
2.对于多条件查询 和范围查询 的灵活运用(and 和or 的灵活运用)
in 用的时候注意 补充
select * from car where name like '%奥迪%' and price between 20 and 70 order by Powers,oil desc
相同类型条件之间 用and (比如两个where) 其他用空格 
排序时 注意 逗号前面的 表示先排序 如有重复的 再按都好后面的排序
: 例子表示 查找所有 名字中有奥德的车 选取 20--70 的 按照 功率排序如有重复 重复的部分按照 油耗排序
查询汽车表中每个系列下有多少个汽车
select brand,count(*) from car group by brand ;#输出品牌 + 数量 {后面的brand 表示品牌形同的归为一组; 前面 brand 表示 输出品牌; 同样 如果 后面 brand 换位 price 表示 输出品牌 价格相同的 归为一组}
 
 
where 表示 行 例如 where name=“mm” 表示: mm所在的一行
 
条件 为 true 即可查出结果 例如条件为: {a=a} 或者直接为 整数 或true
如果为 false 则 查询结果为空
select * from info where price between 40 and 70;
select * from info where true;
select * from info where 1;

 

 

------------------------------------------------------------------------------------------------------------------------------------------------

查询     select.... from...

.简单查询 (查所有数据)

select*from表名     注:  *  查所有的列

--------------------------------------------------------------------------------------

二.查询指定列的数据   (查询结果是虚拟的)

select 列名,列名from 表名

例子:select code,name from info;

三.修改结果集的列名# 代号和姓名 可以 不加引号   在高级查询里面不能加引号

select code as ‘代号’,name as ‘姓名’  from info

----------------------------查询行-----------------------------------------------

四.出啊讯指定行的数据

select *form info where code=’p003’;

.多条件查询

查询  info表中  codep003 或者 nation=n001’的

select *form info where code=’p003’ or  nation=’n001’;

查询  info表中  codep003 并且 nation=n001’的

select *form info where code=’p003’  and  nation=’n001’;

六. 范围查询

select * from  info where price>=40 and price<=70;

select * from  info where  price between 40 and 70;

 

 

------------------------------------------------------------------------in

. 离散查询

查询汽车价格(20,32,423,54,657,787)内的所有车

select *from info where price in(20,32,423,54,657,787);

查询汽车价格不在(20,32,423,54,657,787)内的所有车

select *from info where price  not  in(20,32,3,54,657,787);

 

-----------------------------------------------------------------------like

八. 模糊查询

查询表里的名称还有 奥迪的

select*from car where name like ‘%奥迪%’    % 表示任意n 个字符

查询汽车表中名称第二个字符为马的

select * from car where name like’_’         _表示一个字符

.排序查询

价格升序排列

select*from car order by price asc           asc升序 (可以省略)

价格降序排

select*from car order by price desc           asc升序 (可以省略)

先按  brand 排列  再按  price 排列

select*from car order by  brandpricedesc;

十. 祛重查询

 select distinct brand from car;

十一;

一页显示10条  当前是 第  三页

select*from car limit 20,10

---------------------------------------------------------------------------------------------------------------------

十二. 聚合函数 (统计函数)

  select count(*) from  chinastates  #查询数据总条数

 select count(areacode) from  chinastates  #查询数据总条数 括号呢  变成主键列  提高运行效率

 select count(areacode) from  chinastates  #查询数据总条数 括号呢  变成主键列  提高运行效率

 select sum(price) from car    求和

 select ave(price) from car    平均值

 select max(price) from car    最大

 select min(price) from car    最小

---------------------------------group by.......having-------------------------------------------------------------

十三. 分组查询

查询汽车表中每个系列下有多少个汽车

select  brand,count(*)  from car group by brand ;

查询车店  卖的汽车 数量大于4

select  brand from car group by brand  having  count(*)>3;

转载于:https://www.cnblogs.com/ordinaryk/p/6124974.html

你可能感兴趣的文章
T-SQL 类型转换
查看>>
在eclipse中设计BPMN 2.0工作流定义的根本步骤
查看>>
Json对象与Json字符串互转(4种转换方式)
查看>>
PAT甲级1002 链表实现方法
查看>>
查看Linux信息
查看>>
Python中sys模块sys.argv取值并判断
查看>>
【详记MySql问题大全集】四、设置MySql大小写敏感(踩坑血泪史)
查看>>
并查集
查看>>
ubuntu 11.04下android开发环境的搭建!
查看>>
Bzoj 3343: 教主的魔法
查看>>
括号序列(栈)
查看>>
一件趣事
查看>>
DevExpress控件TExtLookupComboBox实现多列模糊匹配输入的方法
查看>>
atom 调用g++编译cpp文件
查看>>
H3C HDLC协议特点
查看>>
iptables 网址转译 (Network address translation,NAT)
查看>>
ios __block typeof 编译错误解决
查看>>
android 插件形式运行未安装apk
查看>>
ios开发之 manage the concurrency with NSOperation
查看>>
Android权限 uses-permission
查看>>