From the Query Tool, I am not able to read the Transaction table. SELECT * FROM Transaction prompts an error. I am able to read all other tables.
*This post is locked for comments
From the Query Tool, I am not able to read the Transaction table. SELECT * FROM Transaction prompts an error. I am able to read all other tables.
*This post is locked for comments
you need to surround the transaction table name with brackets. Like:
select * from [transaction].
transaction is a reserved word in Microsoft SQL server (all versions)
make it [Transaction]
André Arnaud de Cal...
292,516
Super User 2025 Season 1
Martin Dráb
231,321
Most Valuable Professional
nmaenpaa
101,156