There are three set operators - UNION, INTERSECT, and EXCEPT. Union is by far the most common, but the others have uses too.
SELECT StartDate,EndDate, [Town], Event, Description, Location, Time,
Cost, Phone, PhoneAlt, 1 as active
FROM tblInputEvents
EXCEPT
SELECT StartDate,EndDate...