Hello,
I'm using SQLyog Pro 5.02 and found a bug in the table context menu -> duplicate table structure/data
If the table I want to copy has a column which is a reserved word (in my case, i have a column named “unique”), SQLyog don't add the ` (backquotes) to escape it and the query fails.
Similarly, the function to export a database as SQL statements (Tools->Export blablah, or database context menu) fails if the database name contains a – (hyphen), which is allowed in DB name, but must be escaped when using the db.table syntax (e.g. my-base.my_table => `my-base`.my_table or with all escaped => `my-base`.`my_table`)
The best way to avoid this kind of bug is escaping all the table , columns and database names.
Thanks in advance 😉