"Learn how to rename columns in SQL using the AS keyword! In this example, we rename the 'address' column to 'city' for better clarity in the output.
Command:
SELECT address AS city FROM student;
#SQL #LearnSQL #SQLBasics #DataManagement #SQLCommands