SQL LEARNING PLATFORM
Reading data — every SQL journey starts here.
Learning Blocks
Interactive Queries
Concepts you'll master
Reading specific columns with SELECT
Using * to select all columns
Renaming columns with AS aliases
Doing calculations in SELECT
Removing duplicate rows with DISTINCT
You almost never want every column. Pick what you need.
SELECT name, salary FROM employees;
SELECT name AS 'Employee',
salary AS 'Monthly Salary',
salary * 12 AS 'Annual CTC'
FROM employees;Practice your SQL skills