This may be a very stupid question, but I’m working on repurposing some code. I’m not an SQL guy. In this code:
select a1.email_id from v_account_email a1
What is the a1? What does it do?
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.
a1is an alias to tablev_account_emailit is defined in the last half of the sql
it is just a short way to refer to the table.