SQL字串轉Int類型,sql字串int

來源:互聯網
上載者:User

SQL字串轉Int類型,sql字串int

sql 一般情況下 都是可以隱式轉換的,不需要強轉。實在需要強轉轉換成int類型 可以用

convert(int,@str)

今天說的是另一種情況,
先看sql錯誤提示:

在將 varchar 值 '1,2,3' 轉換成資料類型 int 時失敗。

我們經常寫sql時會寫 select * from table where tableId in (1,2,3)這樣的

如果 1,2,3 是變數 或者是 ‘1,2,3’ 就會報上面的錯,
解決方案 動態執行sql語句 看方法:

    declare @classid nvarchar(Max)    declare @sql nvarchar(Max)    declare @count int      set @classid=(select classid from Class)    set @sql=N'select @count=COUNT(sc.studentid) from   StudentClass sc where classid in ('+@classid+')'    EXEC sp_executesql @sql,N'@count int output ',@count   output     select @count 

這樣就解決了問題 實現動態賦值 in 條件陳述式

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.