gpt4 book ai didi

mysql - 操作数类型冲突 : int is incompatible with date

转载 作者:行者123 更新时间:2023-11-30 21:58:59 25 4
gpt4 key购买 nike

我在我的表中插入值,但我遇到了日期数据类型问题

Insert into EMP_1 
(
EMP_NUM,
EMP_LNAME,
EMP_FNAME,
EMP_INITIAL,
EMP_HIREDATE,
JOB_CODE
)
Values
(
101,
'News',
'John',
'G',
08-11-00,
502
);

这是执行结果

Operand type clash: int is incompatible with date

最佳答案

将日期包装在 ' 中,否则它将把它视为一个 integer 值和它期望的日期。

Insert into  EMP_1 (EMP_NUM, EMP_LNAME,EMP_FNAME,EMP_INITIAL, EMP_HIREDATE, JOB_CODE)
Values (101, 'News', 'John', 'G', '08-11-00', 502);

关于mysql - 操作数类型冲突 : int is incompatible with date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44068557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com