1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-09 10:46:52 +02:00

Fix typos in the SQL Roadmap (#5365)

Updated the row query definition. Row queries can return not just one but multiple rows.
This commit is contained in:
Siddharth Vijay Sai
2024-03-18 21:13:48 +05:30
committed by GitHub
parent c3a61e7f34
commit 1eb5a9c49d

View File

@@ -33,7 +33,7 @@ WHERE column_name OPERATOR
WHERE roll_id = (SELECT roll_id FROM student WHERE name='John');
```
2. **Row subquery**: It returns single row of two or more values.
2. **Row subquery**: It returns a single row or multiple rows of two or more values.
```sql
SELECT * FROM student