古詩詞大全網 - 成語用法 - sqlsever2000自動編號

sqlsever2000自動編號

access字段類型為自動編號。

在sql server中字段類型為int,並設置identity為 遞增1(標識遞增1)

數據庫不同,設置方法不同。

或者直接用sql語句創建表:

create table tableSample

(

id int identity not null

)