|
Yeah, Jugal is right.
Also, on that note, SQL Server would fail that transaction, even if there was a table called User. You need to 'quote' the identifier, in whatever way is appropriate. That could be Insert [User] or Insert "User" etc, to let the database engine know you mean a data element that was created (ie not out of the box) instead of a reserved word.
|