I have a database called Inspection, and a table called User.
I first try to query it as follows:
select * from User ;
... and then like this:
select * from Inspection.dbo.User ;
Both of these are throwing the following error:
Incorrect syntax near the keyword 'User'
Why am I getting this error?