I see that many people post answers or query strings that are like...

SELECT * FROM products WHERE sku='something'

If I pass a query string like that the server has a hissy fit, it seems that the MySQL my web host uses required the following type of string

SELECT * FROM `products` WHERE `sku`='something'

The difference being the back ticks.

Anyone care to elaborate on this, is it a newer version of SQL?