我编写了一个代码,它将 varchar 表中的值插入到我的数据库中的结构化表中,我使用了这个模式:
**
insert int Table1 (field1, field 2 .....)
select cast (field1 to date) as field1, cast (field2 as int) as field2 .......
from table1_Temp**
现在我得到这个错误:
Msg 8114, Level 16, State 5, Line 1
Error converting data type varchar to numeric.
我怎样才能知道哪个字段有问题,我怎样才能解决这个问题?
谢谢,
鲍里斯