Answers for "postgresql add entry to table"

SQL
1

postgresql add entry to table

INSERT INTO table_name(column1, column2, …)
VALUES (value1, value2, …);
Posted by: Guest on March-19-2021
8

posgres insert

INSERT INTO films 
  (code, title, did, date_prod, kind)
    VALUES 
  ('T_601', 'Yojimbo', 106, '1961-06-16', 'Drama');
Posted by: Guest on May-25-2020

Code answers related to "postgresql add entry to table"

Code answers related to "SQL"

Browse Popular Code Answers by Language