首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

怎么检测表是否存在

2012-05-05 
如何检测表是否存在如题。如何检测表是否存在,如果不存在才创建表?另外,假设存在,如何删除里面的数据??求解

如何检测表是否存在
如题。如何检测表是否存在,如果不存在才创建表?

另外,假设存在,如何删除里面的数据??

求解答~

[解决办法]

SQL code
 if object_id('tbname','u') is not null   select 'tbname存在'
[解决办法]
SQL code
if exists(select * from sysobjects where name='table1' and type='u')   delete from table1else   create talbe talbe1   (   ) 

热点排行