mirror of
https://github.com/gowthamrajk/SQL-Tutorials.git
synced 2026-04-30 14:03:55 +07:00
Update README.md
This commit is contained in:
@@ -331,8 +331,9 @@ Following are some of the most commonly used constraints available in SQL −
|
||||
### SQL ALTER TABLE Statement
|
||||
ALTER TABLE table_name {ADD|DROP|MODIFY} column_name {data_ype};
|
||||
|
||||
SQL ALTER TABLE Statement (Rename)
|
||||
ALTER TABLE table_name RENAME TO new_table_name;
|
||||
### SQL ALTER TABLE Statement (Rename)
|
||||
ALTER TABLE table_name RENAME TO new_table_name;
|
||||
|
||||
SQL INSERT INTO Statement
|
||||
INSERT INTO table_name( column1, column2....columnN)
|
||||
VALUES ( value1, value2....valueN);
|
||||
|
||||
Reference in New Issue
Block a user