欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mysql那些事

程序员文章站 2022-05-07 08:12:56
...

1.连接数据库:
格式:mysql -u账户 -p密码 -h数据库服务器安装主机 -P数据库端口
mysql -uroot -padmin -h127.0.0.1 -P3306
2.char 定长字符:char(20)存储will这4个字符.底层依然占20个字符,不足以空格占位
3.varchar 变长字符
4.int(size) int类型中的size标识宽度,但是没有任何意义,一般定义int类型不需要指定size位数
5.bigint: 大整型和int用法一样
6.double[(s,p)] 小数类型,精度(p)和范围(s) money double(5,2):整数和小数一共占5位其中小数占两位
7.bolb: 存放图形,声音和影像,二进制对象,0-4GB
8.text: 存放大文本文件,0-4GB
DML 数据库操作语言
DDL 数据库定义语言
DCL 数据库控制语言
9.BINARY 在字段名前边加上是区分大小写查询
10.条件查询的执行顺序:
(1)先执行FROM,确定查哪一个张表,
(2)再执行Where,过滤,
(3)接着执行SELECT,筛选哪一些列
(4)接着执行ORDER子句,对查询的结果排序
(5)再接着执行GROUP BY子句,分组查询
(6)再接着执行HAVING子句,对分组的结果再筛选

#select id, productName,dir_id,salePrice * cutoff from product where  salePrice * cutoff  between 300 and 400
#select id, productName,dir_id,salePrice * cutoff from product where  dir_id  in (2,4)
#select id, productName,dir_id,salePrice from product order by dir_id ,salePrice
#select id, productName,dir_id,salePrice,salePrice * cutoff  from product where productName like '%M%' order by salePrice * cutoff 
#select id, productName,dir_id,salePrice,salePrice * cutoff  pf from product where dir_id=2 order by pf

分组查询
在SELECT 字句中所有未包含在组函数的列都应该包含在GROUP BY子句中,
包含在GROUP BY 子句中的列不必包含在SELECT列表中
HAVING子句:对分组之后的结果做筛选/过滤

相关标签: mysql 数据库