9
Esporta righe specifiche da una tabella PostgreSQL come script INSERT SQL
Ho uno schema di database chiamato: nyummye una tabella denominata cimory: create table nyummy.cimory ( id numeric(10,0) not null, name character varying(60) not null, city character varying(50) not null, CONSTRAINT cimory_pkey PRIMARY KEY (id) ); Voglio esportare i cimorydati della tabella come inserire il file di script SQL. Tuttavia, desidero …