表格中的插入值

问题描述 投票:0回答:1

enter image description here

为什么我收到此错误。

sql insert sql-insert bulkinsert
1个回答
0
投票

您的 HireDate 日期数据类型似乎不仅仅接受字符串。您需要在插入日期值时明确提及 Date 关键字。您还需要提及年份。尝试如下所示:

Insert INTO Employees (EmployeeID, FirstName, LastName, DepartmentID, Salary, HireDate)
VALUES (1, 'NARESH', 'GUDLA', 987, 4400, DATE '2018-05-07');
© www.soinside.com 2019 - 2024. All rights reserved.