查询的基本语法
select * from 表名;
条件查询
select * from 表名 where 条件;
条件查询(查询)聚合
select 聚合函数(字段名) from students; 聚合函数:sum求和 min最小值 max最大值 count总数 avg平均值
聚合(查询)排序
select * from 表名 order by 列1 asc|desc,列2 asc|desc,... asc升序 desc降序
降序 升序查询的基本语法
select * from 表名;
条件查询
select * from 表名 where 条件;
条件查询(查询)聚合
select 聚合函数(字段名) from students; 聚合函数:sum求和 min最小值 max最大值 count总数 avg平均值
聚合(查询)排序
select * from 表名 order by 列1 asc|desc,列2 asc|desc,... asc升序 desc降序
降序 升序本文标题:mysql操作命令
本文链接:https://www.haomeiwen.com/subject/ftmacftx.html
网友评论