9951 explained code solutions for 126 technologies


postgresInsert into a table


INSERT INTO person (first_name, last_name, email, gender, date_of_birth, country_of_birth) 
VALUES ('Janaya', 'Lindenstrauss', '[email protected]', 'Female', '2021/05/27', 'ID');ctrl + c
INSERT INTO

inserts data into table person

person

name of the table to insert data to

(first_name,

columns list to insert data into

VALUES

list of values to insert into columns (the same order as columns)