Skip to content

Commit 5569b28

Browse files
committed
Update README.md
1 parent 6e5b328 commit 5569b28

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
- [9. Requirements](#9-requirements)
1616
- [10. Entities and Atributes with Data Types](#10-entities-and-atributes-with-data-types)
1717
- [11. Entities Relational Diagram](#11-entities-relational-diagram)
18-
- [12. Relational Database](12#)
19-
- [13. Data Seeding](docs/data-seeding.md)
20-
- [14. SQL Simple Queries](queries/simple-queries.md)
21-
- [15. SQL Advanced Queries](queries/advanced-querias.md)
18+
- [12. Relational Database](#12-relational-database)
19+
- [13. Data Seeding](#13-data-seeding)
20+
- [14. SQL Simple Queries](#14-sql-simple-queries)
21+
- [15. SQL Advanced Queries](#15-sql-advanced-queries)
2222

2323
---
2424

@@ -611,7 +611,7 @@ CREATE TABLE Order_Items (
611611
);
612612
```
613613

614-
## 12. Data Seeding
614+
## 13. Data Seeding
615615

616616
### Clients
617617

@@ -1674,7 +1674,7 @@ INSERT INTO Order_Items (id_order, id_product, quantity, unit_value) VALUES (
16741674
( 'E00035', 'P00014', 1, (SELECT purchase_price FROM Products WHERE id_product = 'P00014'));
16751675
```
16761676

1677-
## 13. SQL Simple Queries
1677+
## 14. SQL Simple Queries
16781678

16791679
### 1. List all clients with no acquisition channel defined (NULL)
16801680

@@ -2044,7 +2044,7 @@ WHERE sale_price BETWEEN 2 AND 3
20442044
ORDER BY sale_price DESC;
20452045
```
20462046

2047-
## 14. SQL Advanced Queries
2047+
## 15. SQL Advanced Queries
20482048

20492049
### 1. Top 10 clients by number of purchases (visits)
20502050

0 commit comments

Comments
 (0)