I have 2 tables: PLAYER and GROUP.
When I call:
SELECT * FROM PLAYER
Everything is OK but when I call:
SELECT * FROM GROUP
There is error:
#1064– You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use
near ‘GROUP’ at line 1`
I don’t understand why there is such error.
GROUPis a reserved keyword . You have to escape it, like soThings to note:
group, it is better to use the pluralGroups.*.