Runnning the following SQL request pops up error about finding an invalid function
SELECT Name, Street FROM Persons
This is most likely because in the database are entries like Street(more)
How do I make sure these errors do not pop up?
Best Kurt
To work around terrible naming choices, use MySQL’s identifier quoting (backtick), eg
See http://dev.mysql.com/doc/refman/5.0/en/identifiers.html