https://github.com/kelsonbatista/project-mysql-basics
Project MySQL Basics
https://github.com/kelsonbatista/project-mysql-basics
database mysql mysql-database mysql-workbench sql
Last synced: about 2 months ago
JSON representation
Project MySQL Basics
- Host: GitHub
- URL: https://github.com/kelsonbatista/project-mysql-basics
- Owner: kelsonbatista
- Created: 2022-04-06T18:25:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T18:40:35.000Z (about 4 years ago)
- Last Synced: 2025-02-01T19:29:28.889Z (over 1 year ago)
- Topics: database, mysql, mysql-database, mysql-workbench, sql
- Language: JavaScript
- Homepage:
- Size: 198 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.
*Esses são exercícios práticos de SQL - Nível básico.*
---
# Skills / *Habilidades*
- Database basics, understand of structure language (SQL) / *Banco de dados básico, entendimento da linguagem estruturada (SQL)*
- Table and relationship works / *Funcionamento das tabelas e relacionamentos*
- Use of MySQL Workbench / *Utilização do MySQL Workbench*
- Queries and its types / *Consultas e seus tipos*
- Query with SELECT command / *Consultas com o comando SELECT*
- Concatenation with CONCAT command / *Concatenação com o comando CONCAT*
- 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*
- Series of results with IN/BETWEEN command / *Série de resultados com o comando IN/BETWEEN*
- 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*