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:
@@ -294,12 +294,13 @@ Following are some of the most commonly used constraints available in SQL −
|
||||
FROM table_name
|
||||
WHERE CONDITION;
|
||||
|
||||
SQL HAVING Clause
|
||||
SELECT SUM(column_name)
|
||||
FROM table_name
|
||||
WHERE CONDITION
|
||||
GROUP BY column_name
|
||||
HAVING (arithematic function condition);
|
||||
### SQL HAVING Clause
|
||||
SELECT SUM(column_name)
|
||||
FROM table_name
|
||||
WHERE CONDITION
|
||||
GROUP BY column_name
|
||||
HAVING (arithematic function condition);
|
||||
|
||||
SQL CREATE TABLE Statement
|
||||
CREATE TABLE table_name(
|
||||
column1 datatype,
|
||||
|
||||
Reference in New Issue
Block a user