Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Basic SELECT statement: Display the names using alias name "First Name", "Last Name"

MySQL Basic Select Statement: Exercise-1 with Solution

Write a query to display the names (first_name, last_name) using alias name "First Name", "Last Name".

Sample table: employees


Code:

SELECT first_name "First Name",  last_name "Last Name" 
	FROM employees;

Pictorial Presentation of the above query


Result :


MySQL Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Basic SELECT statement
Next: Write a query to get unique department ID from employee table.

What is the difficulty level of this exercise?