Update README.md
Browse filesCorrecting a typo
README.md
CHANGED
|
@@ -223,13 +223,13 @@ I need to find the top 5 most expensive products in the Electronics category. Th
|
|
| 223 |
3. Limiting to 5 results
|
| 224 |
</think>
|
| 225 |
<answer>
|
| 226 |
-
```sql
|
| 227 |
SELECT product_id, name, price, category
|
| 228 |
FROM products
|
| 229 |
WHERE category = 'Electronics'
|
| 230 |
ORDER BY price DESC
|
| 231 |
LIMIT 5;
|
| 232 |
-
```
|
| 233 |
</answer>
|
| 234 |
```
|
| 235 |
|
|
|
|
| 223 |
3. Limiting to 5 results
|
| 224 |
</think>
|
| 225 |
<answer>
|
| 226 |
+
\```sql
|
| 227 |
SELECT product_id, name, price, category
|
| 228 |
FROM products
|
| 229 |
WHERE category = 'Electronics'
|
| 230 |
ORDER BY price DESC
|
| 231 |
LIMIT 5;
|
| 232 |
+
\```
|
| 233 |
</answer>
|
| 234 |
```
|
| 235 |
|