posts - 0, comments - 77, trackbacks - 0, articles - 356
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

动态创建表

Posted on 2008-02-14 21:30 semovy 阅读(159) 评论(0)  编辑  收藏 所属分类: MS SQLServer方面
if exists(select * from sysobjects where id=object_id(N'item') and objectproperty(id,N'isUserTable')=1)
drop table item;
create table item(id int not null identity(1,1) primary key,categoryId int not null foreign key references category(类别ID),itemName varchar(255) default '')
insert into item(categoryId,itemName) values(2,'杂志社');
insert into item(categoryId,itemName) values(2,'dfsdf');
select * from item;

只有注册用户登录后才能发表评论。


网站导航:
博客园   IT新闻   Chat2DB   C++博客   博问