In the simplest form, INSERT is used to add one or more tuples to a relation.
INSERT INTO <table>
VALUES <tuple>Attribute values should be listed in the same order as the attributes were specified in the Create Table (SQL) command.
Although, you can specify an attribute list to account for default or Null (SQL) values.
INSERT INTO <table> (<attr list>)
VALUES <tuple>For example:
INSERT INTO deez (name)
VALUES ('John Discord')