Reputation: 819
Here's the error warning I get when executing my query:
My database structure:
Can anyone help me find the error?
Upvotes: 0
Views: 209
Reputation: 6059
CHARACTER
is a reserved MySQL keyword, try putting it in quotes:
SELECT name FROM `CHARACTER`
Upvotes: 1