Problems/Coding/SQL/Easy

Easy SQL

Coding problems · 40 total

Write SELECT query to get all records

Start problem

Filter records with WHERE clause

Start problem

Sort results with ORDER BY

Start problem

Limit results with LIMIT

Start problem

Select specific columns

Start problem

Use DISTINCT to remove duplicates

Start problem

Filter with multiple conditions using AND/OR

Start problem

Use LIKE for pattern matching

Start problem

Filter NULL values with IS NULL

Start problem

Use BETWEEN for range queries

Start problem

Use IN clause for multiple values

Start problem

Join two tables with INNER JOIN

Start problem

Join tables with LEFT JOIN

Start problem

Join tables with RIGHT JOIN

Start problem

Use aggregate function COUNT

Start problem

Use aggregate function SUM

Start problem

Use aggregate function AVG

Start problem

Use aggregate function MAX

Start problem

Use aggregate function MIN

Start problem

Group results with GROUP BY

Start problem

Filter groups with HAVING

Start problem

Use CASE statement for conditional logic

Start problem

Concatenate strings with CONCAT

Start problem

Extract date parts with DATE functions

Start problem

Format dates with DATE_FORMAT

Start problem

Calculate date differences

Start problem

Use subquery in WHERE clause

Start problem

Use EXISTS clause

Start problem

Use UNION to combine results

Start problem

Create table with CREATE TABLE

Start problem

Insert data with INSERT INTO

Start problem

Update records with UPDATE

Start problem

Delete records with DELETE

Start problem

Add column with ALTER TABLE

Start problem

Create index with CREATE INDEX

Start problem

Use COALESCE for NULL handling

Start problem

Use IFNULL for NULL replacement

Start problem

Calculate with mathematical functions

Start problem

Use string functions (LENGTH, UPPER, LOWER)

Start problem

Use ROUND for number formatting

Start problem