Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to get some data about Disneyland's hotels and I'm stuck here with architects. On of the hotels has two architects. As you can see I've tried to concatinate architects and group othe selected items. But I'm not getting their labels instead I'm getting their URI. What am I missing?

SELECT DISTINCT ?hotel ?hotelLabel ?openingDateLabel ?countryLabel 
 (group_concat(?architects;separator=", ") as ?architect)
    WHERE 
   {  
?hotel wdt:P31    wd:Q27686;    # vi leder efter noget, som er "instance of" et hotel
       wdt:P361   wd:Q206521;   # og som er "part of" Disneyland Paris         
       wdt:P1619  ?openingDate;         
       wdt:P495   ?country;
       wdt:P84    ?architects.

SERVICE wikibase:label { 
  bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
  ?hotel rdfs:label ?hotelLabel .
  ?openingDate rdfs:label ?openingDateLabel .
  ?country rdfs:label ?countryLabel .
  ?architect rdfs:label ?architectLabel .
                       }
}
Group by ?hotel ?hotelLabel ?openingDateLabel ?countryLabel

My results Look at architects..


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...