序号 | 列名 | 数据类型 | 长度 | 小数位 | 标识 | 主键 | 外键 | 允许空 | 默认值 | 说明 |
1 | GroupID | int | 4 | 0 | 否 | 用户组ID | ||||
2 | UserModel | int | 4 | 0 | 否 | 绑定模型ID |
店铺模型表
GO
CREATE TABLE [dbo].[ZL_GroupModel](
[GroupID] [int] NOT NULL,
[UserModel] [int] NOT NULL
) ON [PRIMARY]
INSERT [ZL_GroupModel] ( [GroupID] , [UserModel] ) VALUES ( 2 , 0 )
INSERT [ZL_GroupModel] ( [GroupID] , [UserModel] ) VALUES ( 1 , 0 )
detele from ZL_GroupModel
drop table ZL_GroupModel
TRUNCATE table ZL_GroupModel