question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
How many companies were founded in the same year as Google? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri rdf:type onto:Company . ?uri onto:foundingYear ?year . <http://dbpedia.org/resource/Google> onto:foundingYear ?year . } | julipc-p(huggingface) |
Who created Batman? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Batman onto:creator ?uri . } | julipc-p(huggingface) |
How many Aldi stores are there? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?number WHERE { res:Aldi onto:numberOfLocations ?number . } | julipc-p(huggingface) |
What is the capital of Cameroon? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Cameroon onto:capital ?uri. } | julipc-p(huggingface) |
Give me all movies directed by Francis Ford Coppola. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director <http://dbpedia.org/resource/Francis_Ford_Coppola> . } | julipc-p(huggingface) |
Which movies starring Mickey Rourke were directed by Guy Ritchie? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring <http://dbpedia.org/resource/Mickey_Rourke> . ?uri onto:director <http://dbpedia.org/resource/Guy_Ritchie> . } | julipc-p(huggingface) |
When did Dracula's creator die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . } | julipc-p(huggingface) |
What form of government does Russia have? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Russia onto:governmentType ?uri . } | julipc-p(huggingface) |
How many companies were founded by the founder of Facebook? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { <http://dbpedia.org/resource/Facebook> onto:foundedBy ?uri . ?uri onto:foundedBy ?uri . } | julipc-p(huggingface) |
How many children did Benjamin Franklin have? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { <http://dbpedia.org/resource/Benjamin_Franklin> onto:child ?uri . } | julipc-p(huggingface) |
Which airports does Yeti Airlines serve? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines onto:targetAirport ?uri . } | julipc-p(huggingface) |
How many ethnic groups live in Slovenia? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { <http://dbpedia.org/resource/Slovenia> onto:ethnicGroup ?uri . } | julipc-p(huggingface) |
Who is the president of Eritrea? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eritrea> onto:leader ?uri . <http://dbpedia.org/resource/Eritrea> onto:leaderTitle 'President'@en . } | julipc-p(huggingface) |
Who composed the soundtrack for Cameron's Titanic? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> onto:musicComposer ?uri . } | julipc-p(huggingface) |
In which time zone is Rome? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Rome onto:timeZone ?uri . } | julipc-p(huggingface) |
Who is the king of the Netherlands? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Netherlands onto:leader ?uri . ?uri a onto:Royalty . } | julipc-p(huggingface) |
Give me a list of all critically endangered birds. | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri ?p WHERE { ?uri a onto:Bird . { ?uri onto:conservationStatus 'CR'^^<http://www.w3.org/2001/XMLSchema#string> . } UNION { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Critically_endangered_animals> . } } | julipc-p(huggingface) |
Who is the Formula 1 race driver with the most races? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:FormulaOneRacer . ?uri onto:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Did Elvis Presley have children? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Elvis_Presley onto:child ?uri . } | julipc-p(huggingface) |
In which city was the president of Montenegro born? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:office res:President_of_Montenegro . ?x onto:birthPlace ?uri . ?uri a onto:City . } | julipc-p(huggingface) |
In which countries do people speak Japanese? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:language res:Japanese_language . } | julipc-p(huggingface) |
What are the nicknames of San Francisco? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?string WHERE { res:San_Francisco prop:nickname ?string . } | julipc-p(huggingface) |
Whom did Lance Bass marry? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Lance_Bass . } | julipc-p(huggingface) |
When did Boris Becker end his active career? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?d WHERE { res:Boris_Becker onto:activeYearsEndDate ?d . } | julipc-p(huggingface) |
Which types of grapes grow in Oregon? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . } | julipc-p(huggingface) |
In which city are the headquarters of the United Nations? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations onto:location ?uri . ?uri a onto:City . } | julipc-p(huggingface) |
When was Jack Wolfskin founded? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?year WHERE { res:Jack_Wolfskin onto:foundingYear ?year . } | julipc-p(huggingface) |
Who is the tallest basketball player? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Which city has the least inhabitants? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Where is Fort Knox located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . } | julipc-p(huggingface) |
Where is Syngman Rhee buried? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee onto:restingPlace ?uri . } | julipc-p(huggingface) |
What is the timezone in San Pedro de Atacama? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama onto:timeZone ?uri . } | julipc-p(huggingface) |
To which artistic movement did the painter of The Three Dancers belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . } | julipc-p(huggingface) |
Show me all books in Asimov's Foundation series. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:series res:Foundation_series . } | julipc-p(huggingface) |
Which museum in New York has the most visitors? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location <http://dbpedia.org/resource/New_York_City> . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Give me all members of Prodigy. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Prodigy onto:bandMember ?uri . } | julipc-p(huggingface) |
Who is starring in Spanish movies produced by Benicio del Toro? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country <http://dbpedia.org/resource/Spain> . ?film onto:producer <http://dbpedia.org/resource/Benicio_del_Toro> . ?film onto:starring ?uri . ?uri rdf:... | julipc-p(huggingface) |
Which subsidiary of TUI Travel serves both Glasgow and Dublin? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:TUI_Travel onto:subsidiary ?uri . ?uri onto:targetAirport res:Glasgow_Airport . ?uri onto:targetAirport res:Dublin_Airport . } | julipc-p(huggingface) |
How many languages are spoken in Colombia? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri rdf:type onto:Language . <http://dbpedia.org/resource/Colombia> onto:language ?uri . } | julipc-p(huggingface) |
How many movies did Stanley Kubrick direct? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director <http://dbpedia.org/resource/Stanley_Kubrick> . } | julipc-p(huggingface) |
Which city's foundeer is John Forbes? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:founder <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri rdf:type onto:City} | julipc-p(huggingface) |
What is the river whose mouth is in deadsea? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth <http://dbpedia.org/resource/Dead_Sea> . ?uri rdf:type onto:River} | julipc-p(huggingface) |
What is the allegiance of John Kotelawala ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri } | julipc-p(huggingface) |
How many races have the horses bred by Jacques Van't Hart participated in? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:breeder <http://dbpedia.org/resource/Jacques_Van't_Hart> . ?x prop:race ?uri . } | julipc-p(huggingface) |
What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al_Gore_presidential_campaign,_2000> onto:incumbent ?uri. <http://dbpedia.org/resource/Ann_Lewis> onto:president ?uri} | julipc-p(huggingface) |
What is the region of Tom Perriello ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Tom_Perriello onto:region ?uri } | julipc-p(huggingface) |
What layout can be found in cars similar to the Subaru Outback? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:related <http://dbpedia.org/resource/Subaru_Outback> . ?x onto:layout ?uri . ?x rdf:type onto:Automobile} | julipc-p(huggingface) |
Starwood operates in which places? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:operator res:Starwood_Hotels_and_Resorts_Worldwide . ?x prop:address ?uri . } | julipc-p(huggingface) |
Name the mascot of Austin College ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Austin_College prop:mascot ?uri } | julipc-p(huggingface) |
What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:1906–17_Stanford_rugby_teams prop:headcoach ?x . ?x onto:university ?uri . } | julipc-p(huggingface) |
How many people live in Wilton, Connecticut? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence <http://dbpedia.org/resource/Wilton,_Connecticut> . } | julipc-p(huggingface) |
What awards did the film director of The Haunted House win ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> onto:director ?x . ?x onto:award ?uri . } | julipc-p(huggingface) |
Name the origin of Henry Cluney ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Henry_Cluney prop:origin ?uri } | julipc-p(huggingface) |
List the things for which people of New Orleans are famous for? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/New_Orleans> . ?x prop:knownFor ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
What sports are played in schools in the capital region? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:region <http://dbpedia.org/resource/Capital_region> . ?x onto:sport ?uri . ?x rdf:type onto:School} | julipc-p(huggingface) |
What company brought Riddim Ribbon to the market, and developed the batch monitor? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Batch_Monitor prop:developer ?uri. res:Riddim_Ribbon_feat._The_Black_Eyed_Peas prop:distributor ?uri} | julipc-p(huggingface) |
which awards have been given to people who fought in the Battle of France? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:battle <http://dbpedia.org/resource/Battle_of_France> . ?x onto:award ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
Name the resting place of Charles Edward Magoon ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Charles_Edward_Magoon prop:restingplace ?uri } | julipc-p(huggingface) |
Who built the stadium which was rented for the 2013 Copa Centroamericana ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/2013_Copa_Centroamericana> . ?x onto:builder ?uri . ?x rdf:type onto:Stadium} | julipc-p(huggingface) |
Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics_–_Women's_artistic_individual_all-around> onto:silverMedalist ?uri } | julipc-p(huggingface) |
what are some common surnames of female people? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:gender res:Female } | julipc-p(huggingface) |
Which company owns the manufacturer of the Edsel Ranger? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Ranger . ?x prop:parent ?uri . } | julipc-p(huggingface) |
List the total number of board members who share board with Creative commons ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:board <http://dbpedia.org/resource/Creative_Commons> . ?x onto:board ?uri } | julipc-p(huggingface) |
Who is the leader of United States House of Representatives elections, 1788 and 1789 ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections,_1788_and_1789> prop:leader ?uri } | julipc-p(huggingface) |
Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:parentMountainPeak <http://dbpedia.org/resource/Nevado_de_Toluca> . ?uri rdf:type onto:Mountain} | julipc-p(huggingface) |
Where did the designer of Monument to Salavat Yulaev die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Monument_to_Salavat_Yulaev onto:designer ?x . ?x prop:placeOfDeath ?uri . } | julipc-p(huggingface) |
How many mammals are in the Chordate phylum? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal} | julipc-p(huggingface) |
List the battles fought by Roh Tae-woo ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> prop:battles ?uri } | julipc-p(huggingface) |
Which genre of books are published by Random House? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:publisher <http://dbpedia.org/resource/Random_House> . ?x prop:subject ?uri . ?x rdf:type onto:Book} | julipc-p(huggingface) |
Which famous political figure appointed william cushing, and also founded Pittsburgh> | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri. res:William_Cushing onto:appointer ?uri} | julipc-p(huggingface) |
Which newspapers are owned by companies which are under Rolv Erik Ryssdal? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson <http://dbpedia.org/resource/Rolv_Erik_Ryssdal> . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper} | julipc-p(huggingface) |
Which series has an episode called The lost special and also a character named Sherlock Holmes ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Lost_Special> prop:series ?uri. <http://dbpedia.org/resource/Sherlock_Holmes_(play)> prop:characters ?uri} | julipc-p(huggingface) |
What are some Louisiana based models known for? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/Louisiana> . ?x prop:knownFor ?uri . ?x rdf:type onto:Model} | julipc-p(huggingface) |
What are the prizes won by the animator of The Skeleton Dance ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?x . ?x onto:award ?uri . } | julipc-p(huggingface) |
Which office holder's constituency is Haight-Ashbury and has military unit as USS Kittiwake ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:constituency <http://dbpedia.org/resource/Haight-Ashbury> . ?uri onto:militaryUnit <http://dbpedia.org/resource/USS_Kittiwake_(ASR-13)> ... | julipc-p(huggingface) |
What is the region of the ethnic group which speaks the language of Arkansas? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arkansas> onto:language ?x . ?x prop:region ?uri . ?x rdf:type onto:EthnicGroup} | julipc-p(huggingface) |
What is the religion of the member of parliament who is a relative of Sarathchandra Rajakaruna? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:relation <http://dbpedia.org/resource/Sarathchandra_Rajakaruna> . ?x onto:religion ?uri . ?x rdf:type onto:MemberOfParliament} | julipc-p(huggingface) |
What organisation regulates and controls the New Sanno Hotel? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel onto:tenant ?uri } | julipc-p(huggingface) |
Who is the common manager of Aston Villa 2000-02 season and aldo the manager of Middlesbrough F.C. season 2009-10 | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2000–01_Aston_Villa_F.C._season> prop:name ?uri. <http://dbpedia.org/resource/2009–10_Middlesbrough_F.C._season> onto:manager ?uri} | julipc-p(huggingface) |
Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:relatives <http://dbpedia.org/resource/Ralf_Schumacher> . ?uri onto:child <http://dbpedia.org/resource/Mick_Schumacher> . ?uri rdf:type ... | julipc-p(huggingface) |
Does the Toyota Verossa have the front engine design platform? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Toyota_Verossa> onto:automobilePlatform <http://dbpedia.org/resource/Front-engine_design> . } | julipc-p(huggingface) |
What are some other products of the banks which makes Postbanken? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:product <http://dbpedia.org/resource/Postbanken> . ?x prop:products ?uri . ?x rdf:type onto:Bank} | julipc-p(huggingface) |
Who produces the trains operated by the MTR? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:operator <http://dbpedia.org/resource/MTR> . ?x onto:manufacturer ?uri . ?x rdf:type onto:Train} | julipc-p(huggingface) |
Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Primus_(band... | julipc-p(huggingface) |
In which countries can i find some feminist writers? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:movement <http://dbpedia.org/resource/Feminism> . ?x onto:nationality ?uri . ?x rdf:type onto:Writer} | julipc-p(huggingface) |
In which teams did anyone who played as a defencemen, play previously? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:position res:Defenceman . ?x onto:formerTeam ?uri . } | julipc-p(huggingface) |
What are the other band member of the Bands whose current members is Hynief? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers <http://dbpedia.org/resource/Hynief> . ?x onto:bandMember ?uri . ?x rdf:type onto:Band} | julipc-p(huggingface) |
Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:Vadodara_Junction_railway_station prop:line ?uri} | julipc-p(huggingface) |
Who authored the works published in the Jump Square Magazine? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:magazine res:Jump_Square . ?x prop:author ?uri . } | julipc-p(huggingface) |
How many things are aired on BBC HD? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:network <http://dbpedia.org/resource/BBC_HD> . } | julipc-p(huggingface) |
Which work of Craig van Tilbury is close to the area of The Chess Monthyl ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri. res:Craig_Van_Tilbury onto:occupation ?uri} | julipc-p(huggingface) |
Where does the successor of Thongsuk Samdaengpan reside? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Thongsuk_Samdaengpan prop:successor ?x . ?x onto:location ?uri . } | julipc-p(huggingface) |
What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:William_C._Cramer prop:placeOfBirth ?uri} | julipc-p(huggingface) |
List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:order <http://dbpedia.org/resource/Bacillales> . ?uri prop:domain <http://dbpedia.org/resource/Bacteria> . ?uri rdf:type onto:Bacteria} | julipc-p(huggingface) |
What is the place of the Geography Club (play) which is also the official residence of the Scott Berkun? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Geography_Club_(play)> prop:place ?uri. <http://dbpedia.org/resource/Scott_Berkun> prop:residence ?uri} | julipc-p(huggingface) |
What are some characters of series produced by Ricky Grevais? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:executiveProducer res:Ricky_Gervais . ?uri onto:series ?x . } | julipc-p(huggingface) |
Which band's former member are Kevin Jonas and Joe Jonas? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember <http://dbpedia.org/resource/Kevin_Jonas> . ?uri prop:pastMembers <http://dbpedia.org/resource/Joe_Jonas> . ?uri rdf:ty... | julipc-p(huggingface) |
Count all those whose youth club was managed by Luis Enrique. | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager <http://dbpedia.org/resource/Luis_Enrique_(footballer)> . ?uri prop:youthclubs ?x . } | julipc-p(huggingface) |
What is the purpose of the Maharashtra Chess Association which is genere of PyChess? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:PyChess onto:genre ?uri} | julipc-p(huggingface) |
In which language is All I need is Your Sweet lovin written ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> prop:language ?uri } | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.