Please enable JavaScript.
Coggle requires JavaScript to display documents.
SQL Languange - Coggle Diagram
SQL Languange
UNION, INTERSECT and MINUS operators
-
-
-
-
-
-
Joins
It combines rows from two or more tables, views, or materialized views
Types
-
-
Outer Joins
It returns all rows that satisfy the join condition and also returns some or all of those rows from one table for which no rows from the other satisfy the join condition.
-
-
Antijoins
It returns rows from the left side of the predicate for which there are no corresponding rows on the right side of the predicate.
Semijoins
It returns rows that match an EXISTS subquery without duplicating rows from the left side of the predicate when multiple rows on the right side satisfy the criteria of the subquery.
-
-