知识重点:

1.extract(day from schedule01::timestamp)=13

Extract 属于 SQL 的 DML(即数据库管理语言)函数,同样,InterBase 也支持 Extract,它主要用于从一个日期或时间型的字段内抽取年、月、日、时、分、秒数据,因此,它支持其关健字 YEAR、MONTH、DAY、HOUR、MINUTE、SECOND、WEEKDAY、YEARDAY。

  Extract 的使用语法为:

   EXTRACT(关健字 FROM 日期或时间型字段)

  如:extract(year from schedule01)=2017从日期中提取年份

2.max()函数:取最大值

3.case()函数的嵌套

  注意嵌套case()函数时,每个case的开始和结束。


排班功能:现有两个人员(A和B),他们在不同日期的值班状态(state)不同,现在要查询他们在2017.6月的值班信息

表结构如下:

 CREATE TABLE public.temp_schedule

 (

   id integer NOT NULL DEFAULT nextval('temp_schedule_id_seq'::regclass),

   schedule01 timestamp without time zone,--日期

   schedule03 character varying(),--姓名

   state character varying(),--值班状态(0休 1班)

   CONSTRAINT temp_schedule_pkey PRIMARY KEY (id)

 )

1.查询SQL语句:

 select schedule03,schedule01,state  from temp_schedule

  where extract(year from schedule01)= and extract(month from schedule01)=

  order by  schedule03,schedule01;

显示为:

2.现在需要根据(6月的)日期,从1号开始根据人员名称横向合并排列数据(即只显示两行)

显示效果如下:

实现的SQL语句如下:

 select schedule03 as name

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day1

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day2

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day3

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day4

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day5

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day6

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day7

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day8

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day9

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day10

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day11

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day12

 ,max(case when extract(day from schedule01::timestamp)= then state end) as day13

 from temp_schedule

 where extract(year from schedule01)= and extract(month from schedule01)=

 group by schedule03;

3.将人员的值班状态通过汉字(0休 1班)显示出来,显示效果如下:

SQL语句(主要是实现case的嵌套):

 select schedule03 as name

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day1

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day2

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day3

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day4

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day5

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day6

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day7

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day8

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day9

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day10

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day11

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day12

 ,max(case when extract(day from schedule01::timestamp)= then (case when state='' then '休' else '班' end) end) as day13

 from temp_schedule

 where extract(year from schedule01)= and extract(month from schedule01)=

 group by schedule03 ;

  知识一点点的累积,技术一点点的提高!加油!

(排班表一)使用SQL语句使数据从坚向排列转化成横向排列的更多相关文章

  1. 使用SQL语句使数据从坚向排列转化成横向排列(排班表)

    知识重点: 1.extract(day from schedule01::timestamp)=13 Extract 属于 SQL 的 DML(即数据库管理语言)函数,同样,InterBase 也支持 ...

  2. 用SQL语句将数据表中的数据保存为JSON格式

    没有找到好的工具,只想到了拼字符串的方式,用   NVARCHAR(MAX)  可能有截断,不推荐使用,方法中使用了 FOR XML PATH('') 实现,有关其使用方法参考这里 表结构: SQL ...

  3. Hibernate原生SQL查询多表关联,SQL语句要注意的问题

    Hibernate原生SQL查询多表关联,SQL语句要注意的问题 @for&ever 2009-9-4 系统环境: MySQL5.1 Hibernate3.3 有如下的假定: 实体类 Ques ...

  4. (排班表二)后台动态绘制Grid表格

    后台动态绘制值班表(Grid表格 列名不固定) 要求:表头除了值班人姓名,还要显示日期,及每天的星期值,用斜杠‘/’分隔.即:几号/星期几 最终实现的效果:根据查询的年月显示每个值班人查询月份每天的值 ...

  5. 监控SQL:执行表中所有sql语句、记录每个语句运行时间(3)

    原文:监控SQL:执行表中所有sql语句.记录每个语句运行时间(3) 通过执行一个 带参数的存储过程  exec  OpreateTB('OpreateUser','IsRun')  更新表的数据 表 ...

  6. 通过MyEclipse操作数据库,执行sql语句使我们不用切换多个工具,直接工作,方便快捷

    通过MyEclipse操作数据库,执行sql语句使我们不用切换多个工具,直接工作,方便快捷.效果如下:     步骤1:通过MyEclipse中的window->show View->ot ...

  7. SQL语句之 数据约束

    SQL语句之 数据约束 什么是数据约束 数据约束用来限制用户对数据的非法的修改操作. 1.约束字段的默认值 如果插入记录时,没有给某个字段赋值,那么我们可以设置它的默认值 关键字:default CR ...

  8. PHP如何通过SQL语句将数据写入MySQL数据库呢?

    1,php和MySQL建立连接关系 2,打开 3,接受页面数据,PHP录入到指定的表中 1.2两步可直接使用一个数据库链接文件即可:conn.php <?phpmysql_connect(&qu ...

  9. 通过Sql语句导数据

    在通过SQL Server向导中的SQL语句导数据时,默认情况下源表中的nvarchar字段类型会变成202,解决此问题的方法是,要重新选择一下对应的数据接收表.

随机推荐

  1. [Silverlight][linq to sql]不能找到linq to sql自动生成类型

    最近在做Silverlight项目,结合使用了WCF RIA service,通过linq to sql自动生成model类型,使用起来非常方便.具体可见linq to sql之silverlight ...

  2. mysql连接查看

    1:查看当前连接 mysql> show status like 'Threads%'; +-------------------+-------+ | Variable_name     | ...

  3. pat06-图6. 公路村村通(30)

    06-图6. 公路村村通(30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 现有村落间道路的统计数据表中,列出了有可能建设成标准公路的 ...

  4. 在线编辑word文档 可保存到服务器

    使用说明:该方法只在office xp 和 2003上 测试通过,2000及以下 版本没试. 注意:你要打开的服务器端的word文档要有写权限.iis要开起 web服务扩展中的webdav为允许 具体 ...

  5. Python第三方库使用感言

    Python第三方库使用的感言加使用笔记 一般来讲第三方库会提供大量的类与对象, 对象方法的返回值和库中函数的返回值一般不会是Python原始自带的对象, 而是由该第三方库提供的对象, 因为Pytho ...

  6. IsPostBack详解

    1.IsPostBack<只需要加载一次的代码放在if(!IsPostBack)中> 今天在最开始定义了全局变量取得radiobuttonlist中得到的value,但是因为autopos ...

  7. 用 React 编写的基于Taro + Dva构建的适配不同端(微信小程序、H5、React-Native 等)的时装衣橱

    前言 Taro 是一套遵循 React 语法规范的 多端开发 解决方案.现如今市面上端的形态多种多样,Web.React-Native.微信小程序等各种端大行其道,当业务要求同时在不同的端都要求有所表 ...

  8. jquery 滑块导航菜单

    带滑块的导航菜单,鼠标悬浮时,滑块会移动至鼠标位置,离开时,滑块会回到原来的位置,点击菜单之后滑块会停留在被点击菜单位置,等待下一次的鼠标悬浮事件或者点击事件,效果图: 图片效果不行,直接上代码: & ...

  9. SpringCloud的学习记录(4)

    本篇基于上一篇写的, 在git上更改配置后, eureka-client如何更新. 我们只需要在配置文件中配置 spring-cloud-starter-bus-amqp; 这就是说我们需要装rabb ...

  10. SpringBoot常用应用程序属性

    参考地址: https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.h ...