Alex
Alex

Reputation: 819

phpMyAdmin keeps throwing error #1064

Here's the error warning I get when executing my query:

error and query

My database structure:

db structure

Can anyone help me find the error?

Upvotes: 0

Views: 209

Answers (1)

user1438038
user1438038

Reputation: 6059

CHARACTER is a reserved MySQL keyword, try putting it in quotes:

SELECT name FROM `CHARACTER`

Upvotes: 1

Related Questions