数据函数简介添加汇总额外信息 数据 --复杂统计函数 CREATE TABLE t3 (color_type varchar(20), in_date varchar(30),color_count int); INSERT INTO t3 (color_type,in_date,color_count) VALUES('black','2010-09-11',18); INSERT INTO t3 (color_type,in_date,color_count) VALUES('black',…
PS:http://blog.csdn.net/love_rongrong/article/details/6712883 字符串模糊比较 日期类型的模糊查询是不能直接进行的,要先转换成字符串然后再查询 例子如下: select * from table where to_char(“timestamp", 'yyyy-mm-dd hh24:mi:ss') like '%08:30:00%' 这里要注意的是postgre的时间处理上,不分大小写,时分秒格式:hh24:mi:ss,这样才能正常的显…