oracle获取某时间段内的年份、月份、日期列表
摘要:参考 http://www.2cto.com/database/201506/404733.html
阅读全文
posted @
2017-08-29 10:54
time_on
阅读(4887)
推荐(0) 编辑
sql获取某类数据最新时间的值
摘要:平时解决这种,总是用group by,但是又不能select * ,为了可以select * ,于是采用如下办法: select * from (select t.*, row_number() over(partition by t.name order by t.changedate desc)
阅读全文
posted @
2017-06-09 11:10
time_on
阅读(7740)
推荐(0) 编辑
SQL中的特殊字符&处理(转)
摘要:SQL 中的特殊字符&处理 怎么处理上例中的特殊字符? 如果是在SQL*PLUS中,注意是命令行的那种:还可以set define off 来关闭特殊字符,还可以用show define来查看有些特殊定义的字符。 例如: 如何转义 下划线 _ 转义字符 % 处理手法如& 转义字符 ’单引号 在PL/
阅读全文
posted @
2017-06-07 10:38
time_on
阅读(27311)
推荐(0) 编辑
sql分页
摘要:select h.id from (select t.id, rownum as rn from ysp_application t where t.yxbz = 'Y' order by t.sqsj asc) h where h.rn between 1 and 100 order by h.rn asc;
阅读全文
posted @
2017-05-24 16:11
time_on
阅读(224)
推荐(0) 编辑