I am getting a JSON response from a server, in order to arrange and clean the data I am restructuring the response.
When I send the data back to a Postgresql DB, I get an error for entries like place's
I understand that in SQL it should be written as place''s
and not as place\'s
How can I load and work with JSON data without changing this property?
For example, I am trying the following query:
INSERT INTO table_name VALUES (111, 'name', "Dana place's")
As it interpreted by PostgreSQL into Dana place/'s