一.逗号拼接字段 SELECT LISTAGG(aa, ',') WITHIN GROUP (ORDER BY aa) AS AA FROM *** where id<5 输出结果例如:1,2,3,4 二.时间条件 select * from aaa where time >=to_date('2016-01-01 00:00:00', 'yyyy-MM-dd hh24:mi:ss') 三.查询时间类型字段,转换格式 select to_char(timr,'yyyy-MM-dd hh24:m…