TOP CATEGORIES

×

What are aliases in SQL?

S

Shushi

An alias in SQL is a temporary name assigned to a table or a column. 

Using aliases can simplify the writing and reading of queries, especially in the following situations:

  • When column names are lengthy
  • When multiple tables are involved in a query
  • When a more meaningful output is desired

It's important to note that aliases are valid only for the duration of the specific query; they do not alter the actual names of tables or columns in the database.

0 votes

Your Answer