USE MASTERIF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME= N'EMP' AND type = 'U')SELECT 'True'ELSE SELECT 'False'
USE MASTERSELECT * FROM information_schema.columns
USE MASTERSELECT * FROM information_schema.columns WHERE table_name = 'emp'
USE MASTERSELECT * FROM information_schema.columns WHERE table_name = 'emp' and column_name = 'RecDateTime'