A coworker showed me this trick to create INSERT statements from SELECT statements to help me out, though
select 'insert into mugg.subscription(subscription_id, name, system) values (''' || subscription_id || ',' || name || ',' || system ||''')' from mugg.subscription
After running this, Here is one of the rows:
"insert into mugg.subscription(subscription_id, name, system) values ('6CBF39EE-0E53-4CED-841E-02EC0A8E8C00,i-cubed testing subscription,MUGG')"
The pipes (||) are SQL's way of concatenating strings and you use a single quote to escape a single quote.