范围运算
[not] between ....and....
Between and 可以使用大于小于的方式来代替,并且使用大于小于意义表述更明确
这里的查询条件有三种:between .... and,or 和 in
(30,60) >30 and <60
[30,60] >=30 and <=60
模糊匹配查询
字段名 [not] like '通配符' ----> % 任意多个字符
mysql> select bName from books where bName like '%程序%';
查找书名中不包括 "程序"字样记录
mysql> select bName from books where bName not like '%程序%';
MySQL 子查询
概念:在 select 的 where 条件中又出现了select
查询中嵌套着查询
mysql> select bName,bTypeId from books where bTypeId=(select bTypeId from category where bTypeName='黑客');
Limit 限定显示的条目
SELECE * FROM table LIMIT [offset,rows ] 偏移量 行数
select * from table limit m,n语句
表示其中m是指记录开始的index,从0开始,表示第一条记录. n是指从第m+1条开始,取n条。
查出category表中第2条到第6行的记录。
首先2到6行有2,3,4,5,6总共有5个数字,从2开始,偏移量为1
mysql> select * from category limit 1,5;
+---------+--------------+
| bTypeId | bTypeName |
+---------+--------------+
| 2 | 网站 |
| 3 | 3D动画 |
| 4 | linux学习 |
| 5 | Delphi学习 |
| 6 | 黑客 |
+---------+--------------+
查看所有书籍中价格中最低的三条记录
我们对所有记录排序以升序排列,取出前面3个来
mysql> select bName,price from books order by price asc limit 0,3;
+-----------------------------+-------+
| bName | price |
+-----------------------------+-------+
| 网站制作直通车 | 34 |
| 黑客与网络安全 | 41 |
| 网络程序与设计-asp | 43 |
我们将子查询和限制条目,算术运算结合起来查询
显示字段bName ,price ;条件:找出价格比电子工业出版社出版的书中最便宜还要便宜的书。
针对这种查询,我们一步步的来,先找出电子工业出版社出版中最便宜的书
mysql> select bName,price from books where publishing="电子工业出版社" order by price asc limit 0,1;
mysql> select bName,price from books where price<(select price from books where publishing="电子工业出版社" order by price asc limit 0,1);
多行子查询: all表示小于子查询中返回全部值中的最小值
mysql> select bName,price from books where price
连接查询
以一个共同的字段,求两张表当中符合条件的并集。 通过共同字段把这两张表连接起来。
常用的连接:
内连接:根据表中的共同字段进行匹配
外连接分两种:左外连接、右外链接
内连接
语法:
select 字段 from 表1 inner join 表2 on 表1.字段=表2.字段
内连接:根据表中的共同字段进行匹配
测试
Select a.bname,a.price,b.btypename from books a inner join category b on a.btypeid=b.btypeid;
实际使用中inner可省略掉
跟WHERE 子句结果一样
select a.bname,a.price,b.btypename from books a, category b where a.btypeid=b.btypeid;
外连接 (分为左外连接;右外连接)
1.左连接: select 字段 from a表 left join b表 on 连接条件
a表是主表,都显示。
b表从表
主表内容全都有,从表内没有的显示null。
Select a.bname,a.price,b.btypename from books a left join category b on a.btypeid=b.btypeid;
2.右连接:select 字段 from a表 right join b表 on 条件
a表是从表,
b表主表,都显示。
Select a.bname,b.* from books a right join category b on a.btypeid=b.btypeid;
右连接,可以多表连接
聚合函数
函数:执行特定功能的代码块。
算数运算函数:
Sum()求和
显示所有图书单价的总合
mysql> select sum(price) from books; 或select sum(price) as 图书总价 from books;
+------------+
| sum(price) |
+------------+
| 10048 |
+------------+
avg()平均值:
求书籍Id小于3的所有书籍的平均价格
mysql> select avg(price) from books where bId<=3;
+------------+
| avg(price) |
+------------+
| 39.3333 |
+------------+
max() 最大值:
求所有图书中价格最贵的书籍
mysql> select bName,max(price) from books; 这种方法是错误的
我们来查一下最贵的图书是哪本?
select bname,price from books order by desc price limit 0,3;
可见最贵书是Javascript与Jscript从入门到精通,而不是网站制作直通车
select bName,price from books where price=(select max(price) from books);
+----------------------------------------+-------+
| bName | price |
+----------------------------------------+-------+
| Javascript与Jscript从入门到精通 | 7500 |
+----------------------------------------+-------+
min()最小值:
求所有图书中价格便宜的书籍
mysql> select bName,price from books where price=(select min(price) from books);
+-----------------------+-------+
| bName | price |
+-----------------------+-------+
| 网站制作直通车 | 34 |
+-----------------------+-------+
count()统计记录数:
统计价格大于40的书籍数量
mysql> select count(*) from books where price>40;
+----------+
| count(*) |
+----------+
| 43 |
+----------+
Count()中还可以增加你需要的内容,比如增加distinct来配合使用
select count(distinct price) from books where price>40;
算数运算:
+ - * /
给所有价格小于40元的书籍,涨价5元
mysql> update books set price=price+5 where price<40;
给所有价格高于70元的书籍打8折
mysql> update books set price=price*0.8 where price>70;
字符串函数:
substr(string ,start,len) 截取:从start开始,截取len长.start 从1开始算起。
mysql> select substr(bTypeName,1,7) from category where bTypeId=10;
+-----------------------+
| substr(bTypeName,1,7) |
+-----------------------+
| AutoCAD | 本来是AutoCAD技术
+-----------------------+
select substr(bTypeName,8,2)from category where bTypeId=10;
+-----------------------+
| substr(bTypeName,8,2) |
+-----------------------+
| 技术 | 只截取汉字
+-----------------------+
1 row in set (0.00 sec)
concat(str1,str2,str3.....) 拼接。 把多个字段拼成一个字段输出
mysql> select concat(bName,publishing) from books;
mysql> select concat(bName,"-----",publishing) from books;
大小写转换
upper()大写 : 转为大写输出
mysql> select upper(bname) from books where bId=9;
+---------------------------+
| upper(bname) |
+---------------------------+
| DREAMWEAVER 4ǽɡµň¶Ľ |
+---------------------------+
这样转换中文会出现乱码
lower()小写 :转为小写输出
mysql> select lower(bName) from books where bId=10;
+-------------------------------+
| lower(bName) |
+-------------------------------+
| 3d max 3.0 创作效果百例 |
+-------------------------------+