MS SQL 型別對應C 型別

2021-06-02 01:33:19 字數 1045 閱讀 9020

序號

類別

sqlserver

c sharp

備註

1 整數

bit

boolean

true

轉換為1false轉換為0 2

tinyint

byte

c sharp 

資料型別都位於system命名空間 3

smallint

int16 4

intint32 5

bigint

int64 6

smallmoney

decimal 7

money

decimal 8

numeric

decimal 9

decimal

decimal 10

浮點數float

double 11

real

single 12

日期和時間

smalldatetime

datetime 13

datetime

datetime 14

timestamp

datetime 15

字串char

string 16

text

string 17

varchar

string 18

nchar

string 19

ntext

string 20

nvarchar

string 21

二進位制資料

binary

byte 22

varbinary

byte 23

image

byte 24

其他uniqueidentifier

guid 25

variant

object

MS SQL索引型別

一 索引的概念 索引就是加快檢索表中資料的方法。資料庫的索引類似於書籍的索引。在書籍中,索引允許使用者不必翻閱完整個書就能迅速地找到所需要的資訊。在資料庫中,索引也允許資料庫程式迅速地找到表中的資料,而不必掃瞄整個資料庫。二 索引的特點 1.索引可以加快資料庫的檢索速度 2.索引降低了資料庫插入 修...

c與Pascal型別對應

c語言的函式格式與delphi不同,它們是函式返回型別在前,函式宣告在後.對於沒有任何返回型別的函式則定義為void型別.例如 delphi中函式function myfunction intin integer bool 相應的c語言 就變成bool myfunction int intin 又例...

sqlserver 與 c 型別對應

sql server型別 c 型別 bitbool tinyint byte smallint short intint bigint long real float float double money decimal datetime datetime char string varchar s...