ameet commited on
Commit
3e21cef
·
verified ·
1 Parent(s): 202a294

Update README.md

Browse files

Correcting a typo

Files changed (1) hide show
  1. README.md +2 -2
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