Operand type clash: int is incompatible with date + The INSERT statement conflicted with the FOREIGN KEY constraint

前端 未结 4 745
悲&欢浪女
悲&欢浪女 2020-12-11 00:03
create table pilot (
emp_num int,
pl_license varchar (3),
pl_ratings varchar (30),
pl_med_type int,
pl_med_date date,
pl_pt135_date date,
constraint PK_pilot primary         


        
4条回答
  •  感情败类
    2020-12-11 00:19

    I had the same problem. I tried 'yyyy-mm-dd' format i.e. '2013-26-11' and got rid of this problem...

提交回复
热议问题