sql server中常用的幾個資料型別:
binary
固定長度的二進位制資料,其最大長度為 8,000 個位元組。
varbinary
可變長度的二進位制資料,其最大長度為 8,000 個位元組。
image
可變長度的二進位制資料,其最大長度為 2g+ - 1 (2,147,483,647) 個位元組
text
伺服器**頁中的可變長度非 unicode 資料的最大長度為 2g+ (2,147,483,647) 個字元。當伺服器**頁使用雙位元組字元時,儲存量仍是 2,147,483,647 位元組。儲存大小可能小於 2,147,483,647 位元組(取決於字串)。
image
可變長度二進位制資料介於 0 與 2g+ (2,147,483,647) 位元組之間
--binary 和 varbinary
固定長度 (binary) 的或可變程式設計客棧長度 (varbinary) 的 binary 資料型別。
binary [ ( n ) ]
固定長度的 n 個位元組二進位制資料。n 必須從 1 到 8,000。儲存空間大小為 n+4 位元組。
varbinary [ ( n ) ]
n 個位元組變長二進位制資料。n 必須從 1 到 8,000。儲存空間大小為實際輸入資料長度 +4 個位元組,而不是 n 個位元組。輸入的數程式設計客棧據長度可能為 0 位元組。在 sql-92 中 varbinary 的同義詞為 binary varying。
注釋 1. 如果在資料定義或變數宣告語句中沒有指定 n,預設長度為 1。如果沒有用 cast 函式指定 n,預設長度為 30。
2. 當列資料項大小一致時應使用 binary。
3. 當列資料項大小不一致時應使用 varbinary
本文標題: sql server 常用的幾個資料型別
本文位址: /shujuku/mssql/49723.html
幾個常用的Sql Server的系統儲存過程
幾個常用的sql server的系統儲存過程 2009年06月29日 下午 03 48 1.sp attach db 附加資料庫 exec sp attach db dbname witpos filename1 d mssql data witpos.mdf 2.sp rename 重新命名表名 ...
總結了幾個常用的sql server系統表的使用
檢視表的屬性 select from sysobjects where name section 用法 if exists select from sysobjects where name section and xtype u drop table table1 go create table1...
sqlserver的幾個分頁語句
使用內建的row number over 函式 select top 頁大小 from select row number over order by id as rownumber,from table1 as a where rownumber 頁大小 頁數 1 例如 select top 50...