I have some JSON I'm trying to insert into a Postgres database but I can't manage to properly escape the quotes, here's my code
insert into Product_Templates (product) values( '{
"template_id": "OSBSheet",
"name":'Exterior Wall Using 2\"x4\"x96\" Studs, Double Top Plate'
}
I get the error: invalid command \"x96
How do I work around this?