Hi, I use Phpmyadmin from Xampp. But in the sql editor the correct syntax for tables is: `table_name` Is posible to use 'table_name' ???
I never quote table or field names unless they're reserved words or they have spaces in them. Then I use normal single quotes - 'table name'.
A backtick ` is used so that the database doesn't think you are trying to execute a function. With a backtick you can name tables and columns using reserved words like SUM, DATE, etc. The table name itself does not actually have a backtick in it. I would avoid using any non alpha numeric character in a table name.