As : AS : Select Query MySQL TUTORIALS


MySQL TUTORIALS » Select Query » AS »

 

As


Defining a new structural element (table or column) by aliasing an existing value.

A common use for this is to create a shorthand reference to elements with long names to make the SQL statements shorter.

SELECT <columns>
FROM <existing_table_name>
AS <new_table_name>

is simply a reference that exists for the duration of the SQL statement.

SELECT t1.first_name
FROM employee
AS t1;



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Select Query
» AS