請各幫忙 一時想不起用什麽函數了
------解决方案--------------------------------------------------------
- SQL code
--字符型'19'||'95/03/10'--日期型的话,仅仅是显示问题alter session set nls_date_format='yyyy/mm/dd';--再看
------解决方案--------------------------------------------------------
select to_date('19' || '95/03/10', 'yyyy/mm/dd') from dual;
------解决方案--------------------------------------------------------
- SQL code
--1900~1911数据库还没有了,估计你的数据也不能有,因此case when substr('95/03/10',1,2) between '00' and '11' then '20' else '19' end ||'95/03/10'