mysql 数据库查询 按时间排序 如果时间一样 按主键排序怎么写 在一张表里

mysql 数据库查询 按时间排序 如果时间一样 按主键排序怎么写 在一张表里,第1张

select * from tab order by date DESC,table_id DESC。

数据库中,输入这些就可以按时间排序。

MySQL 是一个关系型数据库,由瑞典 MySQL AB 公司开发,目前属于 Oracle 旗下公司。MySQL 最流行的关系型数据库管理系统,在 WEB 应用方面 MySQL 是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件之一。MySQL 是一种关联数据库管理系统,关联数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性。

MySQL 所使用的 SQL 语言是用于访问数据库的最常用标准化语言。MySQL 软件采用了双授权政策(本词条"授权政策"),它分为社区版和商业版,由于其体积小、速度快、总体拥有成本低,尤其是开放源码这一特点,一般中小型网站的开发都选择 MySQL 作为网站数据库。由于其社区版的性能卓越,搭配 PHP ,Linux和 Apache 可组成良好的开发环境,经过多年的web技术发展,在业内被广泛使用的一种web服务器解决方案之一,称之为LAMP。

SELECT

SUBSTRING(AddDateTime, 1, 8) AS datatime,

sum(case when market = "shenai_wdj" then 1 else 0 end) AS wdj,

sum(case when market = "shenai_xm" then 1 else 0 end) AS xm,

sum(case when market = "shenai_baidu" then 1 else 0 end) AS baidu,

sum(case when market = "shenai_anzhi" then 1 else 0 end) AS anzhi,

sum(case when market = "shenai_anzhuo" then 1 else 0 end) AS anzhuo,

sum(case when market = "shenai_tbt" then 1 else 0 end) AS tbt,

sum(case when market = "shenai_jf" then 1 else 0 end) AS jf,

sum(case when market = "shenai_360" then 1 else 0 end) AS sll,

sum(case when market = "shenai_yyh" then 1 else 0 end) AS yyh,

sum(case when market = "shenai_zs" then 1 else 0 end) AS zs,

sum(case when market = "shenai_qq" then 1 else 0 end) AS qqkf,

sum(case when market = "home" then 1 else 0 end)  AS home

FROM master_user

GROUP BY SUBSTRING(AddDateTime, 1, 8),market

ORDER BY SUBSTRING(AddDateTime, 1, 8) DESC


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8555589.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-18
下一篇 2023-04-18

发表评论

登录后才能评论

评论列表(0条)

保存