Check if table exists in SQL Server

前端 未结 28 1888
梦如初夏
梦如初夏 2020-11-22 04:23

I would like this to be the ultimate discussion on how to check if a table exists in SQL Server 2000/2005 using SQL Statements.

When you Google for the answer, you g

28条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 04:58

    In SQL Server 2000 you can try:

    IF EXISTS(SELECT 1 FROM sysobjects WHERE type = 'U' and name = 'MYTABLENAME')
    BEGIN
       SELECT 1 AS 'res' 
    END
    

提交回复
热议问题