https://github.com/kelsonbatista/project-mysql-basics-2
MySQL Basics 2
https://github.com/kelsonbatista/project-mysql-basics-2
database mysql mysql-database normalization sql
Last synced: about 2 months ago
JSON representation
MySQL Basics 2
- Host: GitHub
- URL: https://github.com/kelsonbatista/project-mysql-basics-2
- Owner: kelsonbatista
- Created: 2022-04-14T04:05:05.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-14T04:15:39.000Z (about 4 years ago)
- Last Synced: 2025-03-27T15:53:11.009Z (over 1 year ago)
- Topics: database, mysql, mysql-database, normalization, sql
- Homepage:
- Size: 517 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# About the project / *Sobre o projeto*
These are SQL practical exercises - Basic level 2.
*Esses são exercícios práticos de SQL - Nível básico 2.*
---
# Skills / *Habilidades*
- Database Normalization / *Normalização de Banco de Dados*
- Entities, Attributes and Relationships / *Entidades, Atributos e Relacionamentos*
- Query with SELECT command / *Consultas com o comando SELECT*
- Duplicate removal with DISTINCT command / *Remoção de duplicados com o comando DISTINCT*
- Count items with COUNT command / *Contar itens com o comando COUNT*
- Limite items qty with LIMIT command / *Limitar a qtde de itens com o comando LIMIT*
- Jump query results with OFFSET command / *Saltar resultados de uma consulta com o comando OFFSET*
- Order results with ORDER BY command / *Ordenação de resultados com o comando ORDER BY*
- Filter results with WHERE command / *Filtrar resultados com o comando WHERE*
- Dynamic queries with LIKE command / *Consultas dinâmicas com o comando LIKE*
- Insert data into tables with INSERT command / *Inserção de dados nas tabelas com o comando INSERT*
- Update table data with UPDATE command / *Atualização de dados das tabelas com o comando UPDATE*
- Delete table data with DELETE command / *Remoção de dados das tabelas com o comando DELETE*