博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql 分组,效率,抽样
阅读量:6837 次
发布时间:2019-06-26

本文共 1413 字,大约阅读时间需要 4 分钟。

1 select counters ,input_user ,hours,minutes,counters/minutes as perMinute,counters/hours as perHour from 2 ( 3 SELECT count(*) counters,`录入员` input_user, 4        timestampdiff(hour, '2013-04-21 14:21:43', '2013-04-21 14:35:12') as 5        hours, 6        timestampdiff(minute, '2013-04-21 14:21:43', '2013-04-21 14:35:12') as 7        minutes 8 FROM `zinvest` 9 where  `录入时间` between '2013-04-21 14:21:43' and10       '2013-04-21 14:35:12'11   group by `录入员`12 ) as t113 14 15 16 17 -- 统计调查表完成数 18 select `区县`,19        `乡`,20        `村`,21        `区编码`,22        `乡编码`,23        `村编码`,24        `档案号`,25        `卷号`,26        count(0) as '数量'27 from zinvest28 group by `区编码` , `乡编码`, `村编码`, `档案号` , `卷号`29 order by '数量' desc30 31 32 --按人员查看工作量33 select `区县`,34        `乡`,35        `村`,36        `区编码`,37        `乡编码`,38        `村编码`,39        `档案号`,40        `卷号`,41        `录入员`,42        count(0) as '数量'43 from zinvest44 group by `区编码` , `乡编码`, `村编码`, `档案号` , `卷号`,  `录入员`45 order by '数量' desc46 47 48 49 50 -- 随机抽取n条样式查看  51 select * from zinvest as t152 join (53 select round(rand()*(select max(id) from zinvest t2)) as id54 ) as t255 56 where t1.id >=t2.id and t1.`录入员`='test2'57  limit 10

 

1 --select minzu ,count(case  when gender=1 then 1  end )as 'male',count(case when gender=2 then 1 end ) as 'female' from  wj_vaccine20131010 group by minzu

 

转载于:https://www.cnblogs.com/xiaopythoner/p/3469344.html

你可能感兴趣的文章
BUZZER Driver
查看>>
软件分发、补丁推送排错
查看>>
cocos2d-x jsbinding 在线更新策略设计
查看>>
oc-基本语法
查看>>
apply的调用 http://bbs.51js.com/thread-82017-1-3.html
查看>>
删除对象的属性
查看>>
css中overflow:hidden的属性 可能会导致js下拉菜单无法显示
查看>>
ClickOnce部署(1):一些发布方式
查看>>
eclipse常用插件安装
查看>>
PHP mysqli 扩展库(面向对象/数据库操作封装/事务控制/预编译)
查看>>
Python访问MySQL数据库
查看>>
在大型软件中用Word做报表: 书签的应用
查看>>
stm32内部的CAN总线
查看>>
Hadoop:HDFS NameNode内存全景
查看>>
Winform开发中常见界面的DevExpress处理操作
查看>>
TSPL学习笔记(1)
查看>>
如何使用Apache的ab工具进行网站性能测试
查看>>
jquery.form 和MVC4做无刷新上传DEMO
查看>>
3dmax做的模型导入U3d后 当模型靠近摄像机时镂空问题
查看>>
SecureCRT 6.7.1 注冊机 和谐 破解 补丁 方法
查看>>