0

次のトリプルの例があります

r1 -> property -> resourceA
r1 -> property -> resourceB
r1 -> property -> resourceC
resourceA -> name -> word1
resourceB -> name -> word2
resourceC -> name -> word4

r2 -> property -> resourceD
r2 -> property -> resourceE
r2 -> property -> resourceF
resourceD -> name -> word1
resourceE -> name -> word2
resourceF -> name -> word3

r3 -> property -> resourceG
r3 -> property -> resourceH
r3 -> property -> resourceI
resourceG -> name -> word5
resourceH -> name -> word6
resourceI -> name -> word7

パラメータとして、word1 と word2 を使用します。含むすべての単語を取得したい。word1 と word2 は、word1 と word2 が一緒に出現します。

この例の結果は次のようになります。

word1
word2
word3
word4

私は本当にこれを作る方法がわかりません:(

4

1 に答える 1

2

name述語がすべての s で同じであり、述語wordを持つトリプルが他にないと仮定します。name

SELECT DISTINCT ?w {
  ?s <name> ?w
}
ORDER BY ?w

質問が編集された後に編集されました:

SELECT DISTINCT ?w {  # select each word only once

  # match three properties under the same resource
  ?r <property> ?p1, ?p2, ?p3.

  # two of the properties must have names "word1" and "word2"
  ?p1 <name> "word1" .
  ?p2 <name> "word2" .

  # third property name may be anything, including "word1" and "word2"
  ?p3 <name> ?w .
}
ORDER BY ?w  # return words in sorted order
于 2009-08-04T11:00:30.673 に答える