我有以下查询,其中我将group_concat与用作分隔符。我只想显示多个值分开的记录。有可能吗?
PREFIX schema: <http://schema.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
select ?place (GROUP_CONCAT(?s ; SEPARATOR = ",") AS ?values)
where {?s rdf:type schema:Place.
?s schema:name ?place.}
group by ?place