Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用以下 SPARQL 查询来查找三重存储中的图形:
select distinct ?g where { graph ?g {?s ?p ?o} }
这似乎效率低下。
有没有更好的办法?
表格:
SELECT * { GRAPH ?g {} }
会给你所有的图形名称,没有重复。