I have a short question about mysql query.
What is correct?
SELECT * FROM Persons WHERE Year='1965'
Or
SELECT * FROM `Persons` WHERE `Year` = '1965'
Is this a personal choice or is this something what is really wrong?
|
|
What if you have a table named
vs.
|
|||||
|
|
Quotes are needed if your identifiers (column, table names, operators, etc.) contain MySQL reserved words. See here for the complete list of reserved words: http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html |
|||
|
|
|
Both are correct, but the second one will ALWAYS be accepted, even when you use keywords or functions like |
||||
|
|
|
Both methods are correct, the single quotation mark indicates starts and endings of a string. Therefore if you for example use a column alias with a space like
However it is not recommended only use more then one word in the aliases. And as @Cody Caughlan said also when you use MySQL reserved words. |
|||
|
|