共计 1011 个字符,预计需要花费 3 分钟才能阅读完成。
最近在写报表统计,用的是 postgresql,联合之前写的票据报表统计,写一下罕用的语句。
- 存在可重复使用的查问后果,不蕴含参数的,能够创立长期表。
- 数据表如果须要存大量数据,为了进步查问速度能够创立索引。索引的设置可依据理论查问表的条件。
create index index_name on tb_example
-
将一列字符串数据拆分为多列数据,例如 ” 合肥市 - 庐阳区 - 杏花街道 ” 转为 ” 合肥市 ”,” 庐阳区 ”,” 杏花街道 ”。应用 split(字段名,分隔符,index) 办法,截取字符串总 substr(字符串,长度)
select tb_no, split(area_name,'-',1) as city,split(area_name,'-',2) as country,split(area_name,'-',3) as town from tb_example
-
多条件查问的状况下正当使用 case when。比方想要统计一张表中 status 在不同状态下的数量。然而须要联表查问的时候须要留神将须要依据条件统计的独自拎进去。(A 表查问 tb_example1 中不同状态的统计量,表 B 统计 tb_example2 中 index 大于 0 的 no 个数 < 去重 >)
select A.*, B.uniqueNum from (select no,sum(case status when '01' then 1 else 0 end) as num1, sum(case status when '02' then 1 else 0 end) as num2 from tb_example1 group by no) A, (select no, case when index > 0 then count(distinct(no)) else 0 end as uniqueNum from tb_example2) B where A.no = B.no
- 判断字符串是否蕴含采纳 position(字符串 1,字符串 2)>0 判断
- 获取某日期的周月年起止日期
weekStart timestamp := DATE_TRUNC('week', t_date) 所在周周一
monthStart timestamp := DATE_TRUNC('month', t_date) 所在月初
yearStart timestamp := DATE_TRUNC('year', t_date) 所在年初
firstRace timestamp := DATE_TRUNC('quarter', t_date) - interval '1h' 所在季度初
正文完
发表至: postgresql
2022-01-28