美文网首页
mysql操作命令

mysql操作命令

作者: 小胖写日记 | 来源:发表于2018-04-01 20:42 被阅读0次

    查询的基本语法

    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