-- Paste 1: Drop if exists, create tables, insert data, then verify IF OBJECT_ID('dbo.Employees','U') IS NOT NULL DROP TABLE dbo.Employees; IF OBJECT_ID('dbo.Departments','U') IS NOT NULL DROP TABLE ...