一、DQL语句
1、常量列
SELECT
`StudentName` AS 姓名,
`Address` AS 地址,
'北京信息中心' AS 学校名称
FROM `student`;
2、常用函数
聚合函数
AVG() 求平均分
count() 统计记录数
SELECT COUNT(1) FROM student; //效率高
select count(*) from student;
max() 最大值
min() 最小值
sum() 求和
字符串函数:
日期函数:
CURDATE();
#获取随机数
select FLOOR(RAND()*10);
3、排序查询
order by [desc]
4、*分页查询
limit
5、子查询
先执行子查询,再执行父查询