我有一个 SQL Server PriceLists 表:
CREATE TABLE [dbo].[PriceLists](
[PriceListId] [tinyint] IDENTITY(1,1) NOT NULL,
[PLName] [varchar](20) NULL,
CONSTRAINT [PK_PriceLists] PRIMARY KEY NONCLUSTERED
当我将它链接到 Access 2007 时,Access 将 PriceListId 设置为 Long Integer(这是不正确的)。
当我链接 TinyInt 不是“AutoNumber”(在访问术语中)的其他表时,它作为字节字段正确链接。
关于正确附加表格以将 PriceListId 作为自动编号、字节字段的任何线索?