Oracle SQL,PL/SQL

Sorting by Column Aliase(ছদ্মনাম)

Sorting by Column Aliase(ছদ্মনাম)
Written by shohal

Sorting by Column Aliase(ছদ্মনাম)

SQL aliases are used to give a table, or a column in a table, a temporary name.

Example Oracle SQL Aliases:

Select student_id, student_name, student_dept as dept
From student
Order by dept;

•Here dept is student_dept  aliases and it’s shorting Order by .

About the author

shohal

Leave a Comment