In MySQL we can create queries with or without the backtick (`) symbol. Example:
SELECT * FROM TEST;SELECT * FROM `TEST`;
Both works fine in mysql-console.
Is there any technical difference between them?
Is there any benefit using (`) over over simple queries?
