Hello, SQL!
Welcome to SQL Playground
SQL (Structured Query Language) is the standard language for communicating with databases.
The most basic and common command in SQL is SELECT. It allows you to retrieve data from a database.
Your First Query
To select all columns from a table, we use the asterisk (*) character.
SELECT * FROM users;
Task:
The editor on the right contains a query to select all data from the users table. Click Run to execute it!