Postgresql – I need to insert data for 100 rows; it has unique key constraints as datatypes number and string. How do I do it?
INSERT INTO TABLENAME (id, country, reference, status ) Values (21, 'INDIA', '0001', 'Pass' ) here id and reference are unique. how to insert 1000 records any loop concept in postgresql DB tool DBeaver, Please help ? I am trying manually…