INSERT INTO/ UPDATE / DELETE
Insert values into table for all columns
syntax
INSERT INTO TableName
VALUES(Value1, Value2, ... );Insert values into table for certain columns
Syntax
INSERT INTO TableName(column1,column2,...)
VALUES(Value1,Value2,...);Insert values from other table
syntax
BE AWARE!!!!! WHERE statement is not needed AND you can also use the insert table syntax of this example
Update
The update statement is used for changing values of existing table records
Syntax
Delete
The delete stament is used for deleting existing records from table
Syntax
Last updated