What is wrong with the following T-SQL running in SQL 7.0 against the pubs database?:
Select top 1
4 AS JustANumber, au_id, au_lname, au_fname, state, contract
from authors
where state = 'CA'
order by contract ASC
UNION
Select top 1
5 as JustANumber, au_id, au_lname, au_fname, state, contract...