摘要:
if object_id('[tb]') is not null drop table [tb]gocreate table [tb]([modeid] int,modename varchar(20),parentid int)insert [tb]select 100 ,N'商品管理', 0 union allselect 101 ,N'定单管理', 0 union allselect 102 ,N'用户管理', 0 union allselect 104 ,N'学院广告', 0 union allselect 阅读全文