Quote:
Originally Posted by ******
The official answer is that doing `Users` will work even if the word "Users" one day becomes a MySQL keyword (like "SELECT"), whereas without the quotes won't. For example:
Код:
SELECT * FROM `Insert`
Works.
Код:
SELECT * FROM INSERT
Fails.
|
Great response. Learn something everyday.