标签: json database postgresql
我想将json字符串转换为表格。这里的JSON字符串包含双引号(“)。 以下是示例代码。
select * from json_to_record('{"id":1,"name":"John Smith - "JohnS@gmail.com""}' AS x(id int,name Text)
在这里,我想获取名称: John Smith-“ JohnS@gmail.com” 。 让我知道您是否有解决方案。