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:
@@ -338,10 +338,11 @@ Following are some of the most commonly used constraints available in SQL −
|
||||
INSERT INTO table_name( column1, column2....columnN)
|
||||
VALUES ( value1, value2....valueN);
|
||||
|
||||
SQL UPDATE Statement
|
||||
### SQL UPDATE Statement
|
||||
UPDATE table_name
|
||||
SET column1 = value1, column2 = value2....columnN=valueN
|
||||
[ WHERE CONDITION ];
|
||||
|
||||
SQL DELETE Statement
|
||||
DELETE FROM table_name
|
||||
WHERE {CONDITION};
|
||||
|
||||
Reference in New Issue
Block a user