SQL guide-alias

Source: Internet
Author: User

Using SQL, you can use aliases for the list and table names.

--------------------------------------------

Column alias

Syntax:

SELECT column AS column_alias FROM table

--------------------------------------------

Table alias:

Syntax:

SELECT column FROM table AS table_alias

--------------------------------------------

Syntax: Use the column alias for this table (persons ):
Lastname Firstname Address City
Hansen OLA Timoteivn 10 Sandnes
Svendson Tove Borgvn 23 Sandnes
Pettersen Kari Storgt 20 Stavanger

And this SQL statement:

SELECT LastName AS Family, FirstName AS Name            FROM Persons

Return this result:

Family Name
Hansen OLA
Svendson Tove
Pettersen Kari

--------------------------------------------

Example: use the table alias this table (persons ):
Lastname Firstname Address City
Hansen OLA Timoteivn 10 Sandnes
Svendson Tove Borgvn 23 Sandnes
Pettersen Kari Storgt 20 Stavanger

And this SQL statement:

SELECT LastName, FirstName            FROM Persons AS Employees

Return this result:

Employees table:

Lastname Firstname
Hansen OLA
Svendson Tove
Pettersen Kari

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.