标签:container highlight to_date baidu nta oracle cin containe href
insert
into
test
values
(1,
‘2015-01-01‘
);
直接设置成字符串,会报出“文字与格式字符串不匹配”的异常;
如果正确插入,则要将字符型数据转成日期型数据:
1
|
insert into test values (1,to_date( ‘2015-01-01‘ , ‘yyyy-mm-dd‘ )); |
标签:container highlight to_date baidu nta oracle cin containe href
原文地址:https://www.cnblogs.com/woniu123/p/10072538.html