Skip to content

Commit f5c6747

Browse files
committed
Querying data from multiple tables
1 parent 7783feb commit f5c6747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mysql-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ In database management, an aggregate function is a function where the values of
5353
| 03. |SELECT c1, c2 FROM t1 RIGHT JOIN t2 on condition|Select columns c1 and c2 from a table named t1 and perform a right join between t1 and t2|
5454
| 04. |SELECT c1, c2 FROM t1 FULL OUTER JOIN t2 on condition|Select columns c1 and c2 from a table named t1 and perform a full outer join between t1 and t2|
5555
| 05. |SELECT c1, c2 FROM t1 CROSS JOIN t2 |Select columns c1 and c2 from a table named t1 and produce a Cartesian product of rows in tables|
56-
| 06. |SELECT c1, c2 FROM t1, t2 |Same as above - Select columns c1 and c2 from a table named t1 and produce a Cartesian product of rows in tables|
56+
| 06. |SELECT c1, c2 FROM t1, t2 |Select columns c1 and c2 from a table named t1 and produce a Cartesian product of rows in tables|
5757
| 07. |SELECT c1, c2 FROM t1 A INNER JOIN t2 B on condition |Select columns c1 and c2 from a table named t1 and joint it to itself using an INNER JOIN clause|
5858

0 commit comments

Comments
 (0)