摘要:
1、视图删除表 2、使用sql语句删除数据表 drop table <表名> if exists (select * from sysobjects where name='Commoditylnfo') drop table Commoditylnfo --删除后创建 create table C 阅读全文
摘要:
1、视图创建表 2、T-SQL语句创建表: USE <数据库名> GO --指向所操作的数据库 IF EXISTS(SELECT * FROM sysobjects where name='<表名>') DROP TABLE <表名> --判断此表是否存在,若存在则删除 GO --批处理 creat 阅读全文