Using SQL Server 2000 Developer Edition, why would this code:
select top 10 * from table
result in this error:
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '10'.
and this code:
select * from master m
left join locality l on m.localityid = l.localityid
result in this error:
Server: Msg 170, Level 15, State 1, Line 2 Line 2: Incorrect syntax near 'left'.