删除表

1、视图删除表

2、使用sql语句删除数据表

drop table <表名>

if exists (select * from sysobjects where name='Commoditylnfo')

drop table Commoditylnfo

   --删除后创建

create table Commoditylnfo

(

............

.......

)

 

原文地址:https://www.cnblogs.com/zhouxiangfei/p/12580091.html