SQL AS

christian.dinh's avatar
Published May 7, 2021Updated Sep 3, 2021
Contribute to Docs

Renames a column or table with an alias for display, does not permanently change table/column names in the database.

  • Learn to analyze data with SQL and prepare for technical interviews.
    • Includes 9 Courses
    • With Certificate
    • Beginner Friendly.
      18 hours
  • In this SQL course, you'll learn how to manage large datasets and analyze real data using the standard data management language.
    • Beginner Friendly.
      5 hours

Code Example

SELECT student_name AS 'student',
overall_gpa AS 'gpa',
is_honor_student AS 'Honor Student'
FROM students;

All contributors

Contribute to Docs

Learn SQL on Codecademy

  • Learn to analyze data with SQL and prepare for technical interviews.
    • Includes 9 Courses
    • With Certificate
    • Beginner Friendly.
      18 hours
  • In this SQL course, you'll learn how to manage large datasets and analyze real data using the standard data management language.
    • Beginner Friendly.
      5 hours