oracle 常用sql
--1,随机抽取一条数据
select column from (select * from table order by dbms_random.value ) where rownum = 1;
--2,选取一个表中的重复数据
select column from table group by column having count(*) > 1
--3,日期截取
1)如2012-4-27 9:20:22只截取后面的时分秒
select to_char(sysdate,‘hh24:mi:ss‘) from dual
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。