Skip to content

Latest commit

 

History

History

0x0D-SQL_introduction

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

SQL - Introduction

In this project, we began working on relational databases. I started practising introductory SQL data definitions and data manipulation language, making subqueries, and using functions.


rtcwz

Tasks 📃

  • 0. List databases

  • 1. Create a database

  • 2. Delete a database

  • 3. List tables

  • 4. First table

    • 4-first_table.sql: MySQL script that creates a table first_table.
    • Description:
      • id: INT
      • name: VARCHAR(256)
  • 5. Full description

    • 5-full_table.sql: MySQL script that prints the full description of the table first_table.
  • 6. List all in table

  • 7. First add

    • 7-insert_value.sql: MySQL script that inserts a new row in the table first_table.
    • Description:
      • id = 89
      • name = Best School
  • 8. Count 89

    • 8-count_89.sql: MySQL script that displays the number records with id = 89 in the table first_table.
  • 9. Full creation

    • 9-full_creation.sql: MySQL script that creates and fills a table second_table.
    • Description:
      • id: INT
      • name: VARCHAR(256)
      • score: INT
    • Records:
      • id = 1, name = "John", score = 10
      • id = 2, name = "Alex", score = 3
      • id = 3, name = "Bob", score = 14
      • id = 4, name = "George", score = 8
  • 10. List by best

    • 10-top_score.sql: MySQL script that lists the score and name of all records of the table second_table in order of descending score.
  • 11. Select the best

    • 11-best_score.sql: MySQL script that lists the score and name of all records with a score >= 10 in the table second_table in order of descending score.
  • 12. Cheating is bad

    • 12-no_cheating.sql: MySQL script that updates the score of Bob to 10 the table second_table.
  • 13. Score too low

    • 13-change_class.sql: MySQL script that removes all records with a score <= 5 in the table second_table.
  • 14. Average

    • 14-average.sql: MySQL script that computes the average score of all records in the table second_table.
  • 15. Number by score

    • 15-groups.sql: MySQL script that lists the score and number of records with the same score in the table second_table in order of descending count.
  • 16. Say my name

    • 16-no_link.sql: MySQL script that lists the score and name of all records in the table second_table in order of descending score.
    • Does not display rows without a name value.
  • 17. Go to UTF8

  • 18. Temperatures #0

    • 101-avg_temperatures.sql: MySQL script that displays the average temperature (Fahrenheit) by city in descending order.
  • 19. Temperatures #1

    • 102-top_city.sql: MySQL script that displays the three cities with the highest average temperature from July to August in descending order.
  • 20. Temperature #2

    • 103-max_state.sql: MySQL script that displays the max temperature of each state in order of state name.

Dump file 🐬