如何更正此SQLITE语法错误[已关闭]

hsgswve4  于 2023-01-31  发布在  SQLite
关注(0)|答案(1)|浏览(119)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
在我的员工表列中,“Hiredate”的格式为(DATETIME),当我尝试通过下面的查询检索数据时,出现错误:
SELECT名字,聘用日期FROM员工WHERE聘用日期('2002 -08-14 00:00:00'')
我在SQLITE中遇到错误。
执行已完成,但出现错误。结果:无法识别标记:“'2002 -08-14 00:00:00')“在第一行:从雇员中选择名字、聘用日期--从雇员中选择聘用日期WHERE聘用日期(

d8tt03nd

d8tt03nd1#

正确的语法为:

SELECT FirstName, HireDate FROM employees WHERE HireDate > '2002-08-14 00:00:00'

相关问题