SQL FULL OUTER JOIN Keyword SQL FULL OUTER JOIN KeywordThe FULL OUTER JOIN keyword returns all records when there is a match in left (table1) or right (table2) table records.Not…Read More
SQL RIGHT JOIN Keyword SQL RIGHT JOIN KeywordThe RIGHT JOIN keyword returns all records from the right table (table2), and the matched records from the left table (tab…Read More
The SQL GROUP BY StatementThe SQL GROUP BY StatementThe GROUP BY statement groups rows that have the same values into summary rows, like "find the number of customers in each c…Read More
SQL UNION OperatorThe SQL UNION OperatorThe UNION operator is used to combine the result-set of two or more SELECT statements.Each SELECT statement within UNION must ha…Read More
SQL Self JOINSQL Self JOINA self JOIN is a regular join, but the table is joined with itself.Self JOIN SyntaxSELECT column_name(s)FROM table1 T1, table1 …Read More
0 comments:
Post a Comment
Thanks