日期:2014-05-17 浏览次数:20672 次
--1.假设你的数据库中,日期的存储为8位的年月日: 20110101 20111112 ... --sql select * from tableName where date = to_char(sysdate, 'yyyyMMdd') --2.假设你的数据库中,日期存储为带有时分秒的timestamp型,而你想抽出年月日相同的日期,不计较时分秒 20110101142330 ... --sql select * from tableNmae where substr(date,0,8) = to_char(sysdate, 'yyyyMMdd')
------解决方案--------------------
select * from tablename where instr(to_char(sysdate,'yymmdd'),date)>0