Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试这个时,
Insert into table abc values('name',2000,'1994-04-01');
我收到一个错误,显示
“文字与格式字符串不匹配”。
第三个参数是插入语句中的日期数据类型。我试过用谷歌搜索它,但到处都是相同的语法。请帮忙!!
试试这个——
--INSERT INTO table_abc SELECT 'name', 2000, to_date('1994-04-01', 'yyyy/mm/dd') FROM DUAL D