How to Find Column exist Or not in Table in SQL Server

  1. IF COL_LENGTH(‘Table name’,’Column name’) IS NOT NULL  
  2. BEGIN  
  3. PRINT ‘Your Column Exists’  
  4. END  
  5. ELSE  
  6. BEGIN  
  7. PRINT ‘Your Column not Exists’  
  8. END