记录一些sql,怕忘了

Posted wzb的QQ空间

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录一些sql,怕忘了相关的知识,希望对你有一定的参考价值。

SELECT business_line,count(*) FROM zc_db.t_bug group by business_line;

这个是展示的,显示某一项一共有多少个xxx,注意是group by

 

select DISTINCT `status` from t_bug WHERE create_time BETWEEN \'2017-06-13 16:00:00\' and \'2017-06-15 23:59:00\'

这个是看这一段日期内的问题的存在的所有状态。

 

select t_bug.id,t_bug.channel ,bug_type,`desc`,step_to_string,model,version,t_device.platform,network
from t_bug join t_detail on t_bug.id = t_detail.bug_id join t_device on t_bug.id = t_device.bug_id
where t_bug.id = t_bug.repeat_id and t_bug.id in(
  select bug_id from t_level where `type` = \'P3\') and t_bug.create_time between \'2017-06-13 16:00:00\' and \'2017-06-15 23:59:00\'

这个就很骚,并且没有用表的缩写,比较长。

 

 

感觉sql真是一个,非常让人感到博大精深的东西。

 

以上是关于记录一些sql,怕忘了的主要内容,如果未能解决你的问题,请参考以下文章

Web.xml配置详解

Web.xml配置详解

Flutter踩坑之旅

树型控件单选和多选共存

命令行配置ubuntu中的网络环境

用于从 cloudkit 检索单列的代码模式/片段