I was wondering why some tutorials and other MySQL management tools use grave accent (`) in their queries like this one below:
SELECT `Table
The grave is more commonly referred to as a "backtick", which MySQL uses to escape MySQL reserved words.
Wrapping everything in backticks is very common in PHPMyAdmin and various examples because most would rather name tables and columns whatever they like without worrying about naming errors. I don't agree with the practice personally...