What is gained when writing:
SELECT m.`iD` FROM `MyTable` AS m
instead of:
SELECT `MyTable`.`iD` FROM `MyTable`
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The main purpose would be to change the name of a column to the “AS” name for subsequent result set processing. Suppose you have a function that reads a result set and expects a column named “FOO”, but your table has the column named “BAR”.
If you write:
The result set will have a column named “bar”. If you write:
Then, the result set will have a “foo” column. It allows you to alias a column name.