I would like to know if there is any argument in the select that changes the result format to be used as dump . Example:
create table 'table_name' ('id' int, 'value' text);
insert into 'table_name' values (1, "a"), (2, "b"), (3, "c");
select * from 'table_name';
/* Result: "insert into 'table_name' values (1, "a"), (2, "b"), (3, "c")" */