- or download this
create table tbl_name (
product_id int,
model_number int,
description char[]
);
- or download this
create table new_tbl_name (
product_id int,
model_number int,
description text
);
- or download this
my $text = join('', <STDIN>);
my $pg_array =
...
insert into tbl_name (product_id, model_number, description)
values ($prod_id, $mod_num, $pg_array)
");