尝试使用SSIS将Excel数据导入SQL表。
1. One of the column values in excel has combination of intergers & decimals
2. Sql table has column with data type `nvarchar(100)`
3. After the import I got Null values in that field.
然后我将数据类型更改为Float,现在我收到错误。
什么是正确的数据类型?
以下是我将在excel
中拥有的示例值ColumnA
100
200
0.0342
103
0.45909090
此外,我需要将十进制值限制为小数点后的5位数,而不是四舍五入。例如0.45909090将是0.45909
列的正确数据类型是什么(在SQL表中)。