优点 SQL INSERT 错误
我尝试在 Advantage SQL Server 上的表中插入一行,但不断收到此错误:
错误 7200:AQE 错误:状态 = S0000; NativeError = 2124;
[扩展系统][Advantage SQL Engine]运算符的操作数无效:
INSERT INTO CardExe
(COD_EXAME,COD_MED,DATA_EXAME,DNT_NUM,ESTADO,HORA_EXAME,NUM_EPS,NUM_MARCA,QTD_EXAME)
VALUES
('C40315','2854',{d '2011-10-17'},'420929F2','R',{t '11:40:00'},'45,0','2006116583',1)
我做错了什么?
I'm trying to insert a row in a table on an Advantage SQL Server and I keep getting this error:
Error 7200: AQE Error: State = S0000; NativeError = 2124;
[Extended Systems][Advantage SQL Engine]Invalid operand for operator:
INSERT INTO CardExe
(COD_EXAME,COD_MED,DATA_EXAME,DNT_NUM,ESTADO,HORA_EXAME,NUM_EPS,NUM_MARCA,QTD_EXAME)
VALUES
('C40315','2854',{d '2011-10-17'},'420929F2','R',{t '11:40:00'},'45,0','2006116583',1)
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NUM_EPS 是什么类型的数据字段?看起来您正在将 45,0 放入其中。
可能是问题的原因
What type of data field is NUM_EPS? It appears you are putting 45,0 into it.
MIGHT be the cause of the problem