T-SQL字串前加N是什麼意思

來源:互聯網
上載者:User

T-SQL字串前加N是什麼意思 比如 select @status = N'stopped'那麼其中的字串 stopped 前面為什麼要加 N 呢?而且我們發現有些地方加 N 與否都沒有影響,有些地方又必須加 N。  www.2cto.com   N 在這裡表示 Unicode,就是雙位元組字元。對於西文字元,用一個位元組來儲存過足夠了,對於東方文字字元,就需要兩個位元組來儲存。Unicode 為了統一、規範、方便、相容,就規定西文字元也用兩個位元組來儲存。 也就是說加 N 就表示字串用 Unicode 方式儲存。但有時候加與不加都一樣,又是什麼原因呢?這是由於自動轉換造成的。 比如:declare @status nvarchar(20)select @status = N'stopped'select @status = 'stopped' 實際上上述兩句賦值的結果是一樣的,因為變數類型就是 nvarchar(Unicode 類型)。而有些地方(比如:sp_executesql 的參數)不能自動轉換,所以需要加 N 了。

相關文章

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.