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'); 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 ```sql
SELECT * FROM student SELECT * FROM student
@@ -57,4 +57,4 @@ WHERE column_name OPERATOR
## General Note ## General Note
Subqueries can be either correlated or uncorrelated. A correlated subquery is a subquery that uses values from the outer query. Conversely, an uncorrelated subquery is a subquery that can be run independently of the outer query. Subqueries can be either correlated or uncorrelated. A correlated subquery is a subquery that uses values from the outer query. Conversely, an uncorrelated subquery is a subquery that can be run independently of the outer query.