摘要: (1)select mark, wm_concat(status) from DISSENT_INFO t GROUP BY mark; 查出来的数据 mark status 222 1007,1006333 1008,1008444 1008 (2) 阅读全文
posted @ 2019-01-16 20:17 ConfidentLiu 阅读(769) 评论(0) 推荐(0) 编辑
摘要: Num_digits 的默认值为 0。 正数向后截取,负数向前截取 TRUNC()函数截取时不进行四舍五入 */ select trunc(123.458) from dual; --123 select trunc(123.458, 0) from dual; --123 select trunc 阅读全文
posted @ 2019-01-16 19:52 ConfidentLiu 阅读(2782) 评论(0) 推荐(0) 编辑