凌智商务车:ACCESS中有个自动编号的类型,SQL中有吗?哪个是?

来源:百度文库 编辑:查人人中国名人网 时间:2024/05/09 16:16:43


eg.
create table test
(
id int identity,
name char(16)
)
其中id就相当于ACCESS中的自动编号类型,由identity决定的,你看一下SQL的帮助就知道了


eg.
create table test
(
id int identity,
name char(16)
)
其中id就相当于ACCESS中的自动编号类型,由identity决定的,你看一下SQL的帮助就知道了