100 Days of Sql challenges
Join the 100 day Sql coding challenge. Master Sql with daily challenges, projects, and expert guidance.
Start coding today!
Join the 100 day Sql coding challenge. Master Sql with daily challenges, projects, and expert guidance.
Start coding today!
Day 1 - Create Database
Create two databases 'project' and 'myproject' using CREATE DATABASE statement
Day 2 - List Databases
List all the databases using SHOW DATABASES statement
Day 3 - Rename Database
1. Rename database 'project' to 'mydatabase' using ALTER DATABASE statement
2. Rename database 'mydatabase' back to 'project' again using RENAME DATABASE statement
Verify your changes by listing databases after you run the query
2. Rename database 'mydatabase' back to 'project' again using RENAME DATABASE statement
Verify your changes by listing databases after you run the query
Day 4 - Drop Database
Delete database 'mydatabase' using DROP DATABASE statement
Verify your changes by listing databases after you deleted the database
Verify your changes by listing databases after you deleted the database
Day 5 - Select Database
Select database 'project' using USE DATABASE statement
We can perform operations like creating a TABLE or inserting data to the TABLE only after selecting the database.
We can perform operations like creating a TABLE or inserting data to the TABLE only after selecting the database.
Day 6 - Select Query
Write a query to retrieve all rows from a table
Day 7 - Select columns
Select specific columns from a table
Day 8 - WHERE clause
Add a WHERE clause to filter data based on a condition
Day 9 - Sort Results
Sort the result set in ascending and descending order
Day 10 - Limit Results
Limit the number of rows returned in a query
Community|Blog|Youtube|Careers|Contact Us
Have Feedback or want to contribute? Email: hello[@]100DaysOfCode.io
100DaysOfCode@2024