该文被密码保护。 阅读全文
posted @ 2018-07-10 15:21 chenzechao 阅读(238) 评论(0) 推荐(0)
摘要: 1 drop table work_day_tbl; 2 create table work_day_tbl ( 3 day string comment '日期' 4 ,week int comment '周一1,周日7' 5 ,work_day i... 阅读全文
posted @ 2018-07-10 10:12 chenzechao 阅读(229) 评论(0) 推荐(0)
摘要: ROWS BETWEEN含义,也叫做WINDOW子句: PRECEDING:往前 FOLLOWING:往后 CURRENT ROW:当前行 UNBOUNDED:起点 UNBOUNDED PRECEDING 表示从前面的起点 UNBOUNDED FOLLOWING:表示到后面的终点 AVG(pv) O 阅读全文
posted @ 2018-07-10 10:05 chenzechao 阅读(256) 评论(0) 推荐(0)