创建临时表:
create table name_table
(
列1 数据类型,
...
)
insert into
name_table(列1,列2,...)
values
(值1,值2)
时间不能直接做差,时间统计主要如下:
系统当前日期:date_sub(current_date(),0) #间隔日期为0,即当前日期
取前一天的日期:date_sub(current_date(),1)
取字段日期:to_date(字段)
取两个日期之间相差天数:datediff(字段1,字段2)