我有一个查询,我想序列化到geoJSON:
select article_title, pub_date, city, geom
from article, location
where article.id = location.id;
我可以通过以下方式轻松地序列化geom字段:
select st_asgeojson(geom) from location;
以及文章中的字段:
select row_to_json(t) from(select article_title, pub_date from article) t;
问题是我无法找到从文章和位置字段正确序列化到geojson的方法。谁能帮我这个?如果您需要更多详细信息,请与我们联系。提前谢谢!