mirror of
https://github.com/gowthamrajk/SQL-Tutorials.git
synced 2026-04-30 22:13:56 +07:00
Update README.md
This commit is contained in:
@@ -855,4 +855,11 @@ A view can be updated under certain conditions which are given below −
|
|||||||
- The HAVING Clause enables you to specify conditions that filter which group results appear in the results.
|
- The HAVING Clause enables you to specify conditions that filter which group results appear in the results.
|
||||||
- The WHERE clause places conditions on the selected columns, whereas the HAVING clause places conditions on groups created by the GROUP BY clause.
|
- The WHERE clause places conditions on the selected columns, whereas the HAVING clause places conditions on groups created by the GROUP BY clause.
|
||||||
|
|
||||||
|
SELECT column1, column2
|
||||||
|
FROM table1, table2
|
||||||
|
WHERE [ conditions ]
|
||||||
|
GROUP BY column1, column2
|
||||||
|
HAVING [ conditions ]
|
||||||
|
ORDER BY column1, column2
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user