----选择数据库 use ythome go ----查看表是否存在 if Exists ( select * from sysobjects where name='sys_menu' and type='U' ) ----删除表 begin drop table sys_menu end go create table sys_menu ( ----Primary Key 主键约束 IDENTITY(1,1) 标示列初始值1,标示增量1 [id] int not null Primary…