Check if table exists in SQL Server ... IF OBJECT_ID (N'mytablename', N'U') IS NOT NULL SELECT 1 AS res ELSE SELECT 0 AS res;.
確定! 回上一頁