|
15 | 15 | - [9. Requirements](#9-requirements) |
16 | 16 | - [10. Entities and Atributes with Data Types](#10-entities-and-atributes-with-data-types) |
17 | 17 | - [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) |
22 | 22 |
|
23 | 23 | --- |
24 | 24 |
|
@@ -611,7 +611,7 @@ CREATE TABLE Order_Items ( |
611 | 611 | ); |
612 | 612 | ``` |
613 | 613 |
|
614 | | -## 12. Data Seeding |
| 614 | +## 13. Data Seeding |
615 | 615 |
|
616 | 616 | ### Clients |
617 | 617 |
|
@@ -1674,7 +1674,7 @@ INSERT INTO Order_Items (id_order, id_product, quantity, unit_value) VALUES ( |
1674 | 1674 | ( 'E00035', 'P00014', 1, (SELECT purchase_price FROM Products WHERE id_product = 'P00014')); |
1675 | 1675 | ``` |
1676 | 1676 |
|
1677 | | -## 13. SQL Simple Queries |
| 1677 | +## 14. SQL Simple Queries |
1678 | 1678 |
|
1679 | 1679 | ### 1. List all clients with no acquisition channel defined (NULL) |
1680 | 1680 |
|
@@ -2044,7 +2044,7 @@ WHERE sale_price BETWEEN 2 AND 3 |
2044 | 2044 | ORDER BY sale_price DESC; |
2045 | 2045 | ``` |
2046 | 2046 |
|
2047 | | -## 14. SQL Advanced Queries |
| 2047 | +## 15. SQL Advanced Queries |
2048 | 2048 |
|
2049 | 2049 | ### 1. Top 10 clients by number of purchases (visits) |
2050 | 2050 |
|
|
0 commit comments