Skip to content

Commit db09734

Browse files
committed
Update README.md
1 parent 61fc4be commit db09734

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1676,15 +1676,15 @@ INSERT INTO Order_Items (id_order, id_product, quantity, unit_value) VALUES (
16761676

16771677
## 13. SQL Simple Queries
16781678

1679-
1. List all clients with no acquisition channel defined (NULL)
1679+
### 1. List all clients with no acquisition channel defined (NULL)
16801680

16811681
```sql
16821682
SELECT id_cliente, nome, canal_aquisicao
16831683
FROM Clientes
16841684
WHERE canal_aquisicao IS NULL;
16851685
```
16861686

1687-
2. List the 10 most recently created clients (descending by creation date)
1687+
### 2. List the 10 most recently created clients (descending by creation date)
16881688

16891689
```sql
16901690
SELECT id_cliente, nome, data_criacao

0 commit comments

Comments
 (0)