SELECT term, crn, fee, level_code
FROM live_data
MINUS
SELECT term, crn, fee, level_code
FROM historical_data
Vad som visas live men inte historiskt. Kan sedan union till en omvänd av detta för att få vad som är historiskt men inte levande.
SELECT term, crn, fee, level_code
FROM live_data
MINUS
SELECT term, crn, fee, level_code
FROM historical_data
Vad som visas live men inte historiskt. Kan sedan union till en omvänd av detta för att få vad som är historiskt men inte levande.