Learn to Code SQL Example – SQL | Aliases

(SQL Example for Citizen Data Scientist & Business Analyst)

 

SQL | Aliases

Aliases are the temporary names given to table or column for the purpose of a particular SQL query. It is used when name of column or table is used other than their original names, but the modified name is only temporary.

      • Aliases are created to make table or column names more readable.
      • The renaming is just a temporary change and table name does not change in the original database.
      • Aliases are useful when table or column names are big or not very readable.
      • These are preferred when there are more than one table involved in a query.

Basic Syntax:

  • For column alias:
    SELECT column as alias_name FROM table_name;
    column: fields in the table
    alias_name: temporary alias name to be used in replacement of original column name 
    table_name: name of table
    
  • For table alias:
    SELECT column FROM table_name as alias_name;
    column: fields in the table 
    table_name: name of table
    alias_name: temporary alias name to be used in replacement of original table name
    

table12

Queries for illustrating column alias

        • To fetch ROLL_NO from Student table using CODE as alias name.
          SELECT ROLL_NO AS CODE FROM Student; 
          

          Output:

          CODE
          1
          2
          3
          4

 

      • To fetch Branch using Stream as alias name and Grade as CGPA from table Student_Details.
        SELECT Branch AS Stream,Grade as CGPA FROM Student_Details; 
        

        Output:

        Stream CGPA
        Information Technology O
        Computer Science E
        Computer Science O
        Mechanical Engineering A

Queries for illustrating table alias

table1
Generally table aliases are used to fetch the data from more than just single table and connect them through the field relations.

        • To fetch Grade and NAME of Student with Age = 20.
          SELECT s.NAME, d.Grade FROM Student AS s, Student_Details
          AS d WHERE s.Age=20 AND s.ROLL_NO=d.ROLL_NO; 
          

          Output:

          NAME Grade
          SUJIT O

 

Beginners Guide to SQL – SQL Aliases

 

Learn to Code SQL Example – SQL | Aliases

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!