It always requires quotation marks and becomes case sensitive
So:
SELECT GroupID,GroupName FROM "Group"
if the table name is a group, then:
SELECT GroupID,GroupName FROM "Group"
Be sure to include a name.
Although it is not recommended to use table names that require quotation marks and are reserved words.
If you can change the name of the table.
source share