程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle中往varchar2格式的字段中插入date時間格式的值會發生什麼?

oracle中往varchar2格式的字段中插入date時間格式的值會發生什麼?

編輯:Oracle教程

oracle中往varchar2格式的字段中插入date時間格式的值會發生什麼?


--建立表test1

create table TEST1
(
ID VARCHAR2(40) default sys_guid(),
TDATE VARCHAR2(200)
)
tablespace APP_TX_DATA
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);

--插入date時間格式數據

insert into test1 values(sys_guid(),sysdate+10);、

--查詢數據

select * from test1 -- tdate值為 01-7月 -15

--Q:如何將現有數據01-7月 -15格式刷成正常的YYYYMMDD格式?

update test1 t set t.tdate = '20'||substr(t.tdate,instr(t.tdate, '-', 1, 2) + 1,2)
|| case instr(t.tdate, '月', 1, 1) - (instr(t.tdate, '-', 1, 1) + 1)
when 1 then '0' || substr(t.tdate,
instr(t.tdate, '-', 1, 1) + 1,
(instr(t.tdate, '月', 1, 1)) - (instr(t.tdate, '-', 1, 1) + 1))
when 2 then substr(t.tdate,
instr(t.tdate, '-', 1, 1) + 1,
(instr(t.tdate, '月', 1, 1)) - (instr(t.tdate, '-', 1, 1) + 1))
else t.tdate end
|| substr(t.tdate,0,2)
where t.tdate like '%月%' order by t.tdate

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved