Postgresql – Inserting dummy data into Postgres table
I have got the following Postgres table: create table test ( id serial, contract varchar, amount0 int, amount1 int, price double precision ); I would like to insert 100 rows of dummy data that conforms to the following: – In…