1、视图删除表
2、使用sql语句删除数据表
drop table <表名>
if exists (select * from sysobjects where name='Commoditylnfo')
drop table Commoditylnfo
--删除后创建
create table Commoditylnfo
(
............
.......
)