在 Sql server 2008 中将 nvarchar 转换为 bigint

发布于 2024-11-03 17:16:41 字数 227 浏览 3 评论 0原文

我想将一个表的所有行插入到另一个表中,并且还想将 nvarchar 字段转换为 bigint,但是当我使用 convert(bigint, col1) 时SQL Server 显示错误:

转换数据类型 nvarchar 时出错 转为bigint

我该如何解决这个问题?

I want insert all rows of a table into another table, and I also want convert a nvarchar field into bigint, but when I use convert(bigint, col1) SQL Server shows an error:

Error converting data type nvarchar
to bigint

How can I fix this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

ㄖ落Θ余辉 2024-11-10 17:16:41

您可以尝试使用 ISNUMERIC 来确定那些确实是数字的行:

UPDATE dbo.YourTable
SET BigIntColumn = CAST(NVarcharColumn AS BIGINT)
WHERE ISNUMERIC(NVarcharColumn) = 1

这将转换那些可以转换的行 - 其他行需要手动处理。

You could try to use ISNUMERIC to determine those rows that are indeed numeric:

UPDATE dbo.YourTable
SET BigIntColumn = CAST(NVarcharColumn AS BIGINT)
WHERE ISNUMERIC(NVarcharColumn) = 1

That would convert those rows that can be converted - the others need to be dealt with manually.

意犹 2024-11-10 17:16:41

您应该将 bigint 转换为 nvarchar,反之亦然
强制转换(Other_Column_name as nvarchar)未强制转换(Column_Name as bigint)

You should convert bigint to nvarchar not vice versa
cast(Other_Column_name as nvarchar) not cast (Column_Name as bigint)

送舟行 2024-11-10 17:16:41

你可以试试这个:

CAST(CAST(col1 as NUMERIC) as BIGINT)

you can try this:

CAST(CAST(col1 as NUMERIC) as BIGINT)
孤者何惧 2024-11-10 17:16:41

在这里,我将列的 navrchar 值转换为 bigInt,然后执行这两列的相加查找打击:

SELECT (CAST(col1 AS BIGINT) + CAST(col2 AS BIGINT)) AS TotalValue from tableName 

Here I convert navrchar value of column into bigInt and than perform Addition of thos two columns find blow :

SELECT (CAST(col1 AS BIGINT) + CAST(col2 AS BIGINT)) AS TotalValue from tableName 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文