-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLC-QuAD_v6_art.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 492.
1200 lines (1200 loc) · 366 KB
/
LC-QuAD_v6_art.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
http://dbpedia.org/ontology/Architect;;;<A> has architected in how many cities?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:architect <A> . ?x dbp:locationTown ?uri . ?uri a dbo:City };select distinct ?a where { ?x dbo:architect ?a . ?x dbp:locationTown ?uri . ?uri a dbo:City };901504aad5414f9b8ea3323d9f9f9e3a
http://dbpedia.org/ontology/ComicsCreator;;;<A> has created how many comics character ?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:creators <A> . ?uri a dbo:ComicsCharacter };select distinct ?a where { ?uri dbp:creators ?a . ?uri a dbo:ComicsCharacter };d5eec8fa9c454d71af0be385eb6d2193
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/WrittenWork;;<B> is a work of <A>?;ASK where { <B> dbo:previousWork <A> };select distinct ?a, ?b where { ?b dbo:previousWork ?a };11122ef7a8fb46d89a3d6b4d6757b990
http://dbpedia.org/ontology/ArchitecturalStructure;;;By what style was <A> made?;SELECT DISTINCT ?uri where { <A> dbp:style ?uri };select distinct ?a where { ?a dbp:style ?uri };0f3429d03fd64266b8c2d76addb5c46c
http://dbpedia.org/ontology/Broadcaster;;;Count the number of judges who've come on <A> shows.;SELECT DISTINCT COUNT(?uri) where { ?x dbo:network <A> . ?x dbp:judges ?uri };select distinct ?a where { ?x dbo:network ?a . ?x dbp:judges ?uri };f43f2072568f44aaa9450a64e62ca3da
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879|http://dbpedia.org/ontology/ComicsCreator;http://dbpedia.org/ontology/Person;;Did <A> create <B>?;ASK where { <B> dbp:creators <A> };select distinct ?a, ?b where { ?b dbp:creators ?a };c1908db186d144338bc6f399f9c6864c
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/ComicsCreator;;Did <B> create <A>?;ASK where { <A> dbp:creators <B> };select distinct ?a, ?b where { ?a dbp:creators ?b };b7900ed86fb84fd7a7f479831e72bfcb
http://dbpedia.org/ontology/Person;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879|http://dbpedia.org/ontology/ComicsCreator;;Did <B> create the <A>?;ASK where { <A> dbp:creators <B> };select distinct ?a, ?b where { ?a dbp:creators ?b };7645a46261d14d09a5d676889c29a695
;http://dbpedia.org/class/yago/Editor110044879;;Did <B> design <A>?;ASK where { <A> dbo:designCompany <B> };select distinct ?a, ?b where { ?a dbo:designCompany ?b };4d489bcad0334bd58b83cdeedbd1c5ec
;http://dbpedia.org/ontology/MusicGenre;;Did <B> originate in <A>?;ASK where { <B> dbp:stylisticOrigins <A> };select distinct ?a, ?b where { ?b dbp:stylisticOrigins ?a };0e1747e68f354dd482d80063d88e8466
;http://dbpedia.org/ontology/MusicGenre;;Did <B> originate in <A>?;ASK where { <B> dbo:stylisticOrigin <A> };select distinct ?a, ?b where { ?b dbo:stylisticOrigin ?a };df518a80342e4fb984830368c9884d96
;http://dbpedia.org/ontology/WrittenWork;;Does <B> belong to the genre <A>?;ASK where { <B> dbo:literaryGenre <A> };select distinct ?a, ?b where { ?b dbo:literaryGenre ?a };63ca129cc4fa4a1a982e2980c540e35b
;http://dbpedia.org/ontology/ArchitecturalStructure;;Does <B> follow the architectural style of <A>?;ASK where { <B> dbp:architecture <A> };select distinct ?a, ?b where { ?b dbp:architecture ?a };4a9b50b6f10f4e23bfacaee43d35e802
http://dbpedia.org/ontology/MusicGenre;;;Does the stylistic origins of <A> lie in the <B>?;ASK where { <A> dbp:stylisticOrigins <B> };select distinct ?a, ?b where { ?a dbp:stylisticOrigins ?b };574ac42d309a4676893b0f1e4f291a36
http://dbpedia.org/ontology/Broadcaster;;;Give me a count of everything owned by the network whose sister name is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:sisterNames <A> . ?uri dbp:network ?x };select distinct ?a where { ?x dbp:sisterNames ?a . ?uri dbp:network ?x };921e9607ab704a2293e0d3c7a2e6dbe3
http://dbpedia.org/ontology/Person;;;Give me everything owned by networks which is lead by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:keyPerson <A> . ?uri dbo:network ?x };select distinct ?a where { ?x dbo:keyPerson ?a . ?uri dbo:network ?x };3dbc2bb2e2064e068bbd736158623ba3
http://dbpedia.org/ontology/Person;;;Give me the total number of architect of the buildings whose one of the architect was <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:architect <A> . ?x dbp:architect ?uri };select distinct ?a where { ?x dbp:architect ?a . ?x dbp:architect ?uri };681e53e68393454b864693eaa0ee2eb7
;;;How many architects are there who have made something used by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:tenant <A> . ?x dbp:architect ?uri };select distinct ?a where { ?x dbo:tenant ?a . ?x dbp:architect ?uri };acbfdfd774604545abda627572f18dca
http://dbpedia.org/ontology/TelevisionShow;;;How many important things has the painter <A> done?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:creator ?x . ?x dbo:notableWork ?uri };select distinct ?a where { ?a dbp:creator ?x . ?x dbo:notableWork ?uri };0aef9a11ec194002b66c6ff62f383798
http://dbpedia.org/ontology/Writer;;;How many important works have been done by <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbo:notableWork ?uri };select distinct ?a where { ?a dbo:notableWork ?uri };0dbbb933294f48bcab3c33d1298ef7e1
http://dbpedia.org/ontology/MusicGenre;;;How many items belong to the <A> genre?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:genre <A> };select distinct ?a where { ?uri dbp:genre ?a };8ae784fd30814515b6229d039f232b79
http://dbpedia.org/ontology/Architect;;;How many other architect are there of the historic places whose architect is also <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:architect <A> . ?x dbo:architect ?uri };select distinct ?a where { ?x dbo:architect ?a . ?x dbo:architect ?uri };25e3cd095c5a460e818600f9908859d5
http://dbpedia.org/ontology/Person;;;How many people have parterned with the person choroegraphed by <A> in the past?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:formerChoreographer <A> . ?x dbo:formerPartner ?uri . ?uri a dbo:Person };select distinct ?a where { ?x dbo:formerChoreographer ?a . ?x dbo:formerPartner ?uri . ?uri a dbo:Person };f6f3a47cf61449bdac6126a01ad39c30
http://dbpedia.org/ontology/Broadcaster;;;How many things are aired on <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:network <A> };select distinct ?a where { ?uri dbo:network ?a };602d5f8103c345b1bf3b59a8f4fbcb01
;;;In how many different places can I fnd <A> buildings?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:architecturalStyle <A> . ?x dbp:address ?uri };select distinct ?a where { ?x dbp:architecturalStyle ?a . ?x dbp:address ?uri };f0157809a86545afa67e70029372d9ef
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;In how many languages did <A> sing?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:artist <A> . ?x dbp:language ?uri };select distinct ?a where { ?x dbp:artist ?a . ?x dbp:language ?uri };522b9a5a5c03491bbbb0b8eb89fc063f
http://dbpedia.org/ontology/Architect;;;In which city are buildings by <A> found?;SELECT DISTINCT ?uri where { ?x dbo:architect <A> . ?x dbp:locationTown ?uri . ?x a dbo:Building };select distinct ?a where { ?x dbo:architect ?a . ?x dbp:locationTown ?uri . ?x a dbo:Building };2fd09016a75d42d4b3601fc9712d3ae5
http://dbpedia.org/ontology/Artwork;http://dbpedia.org/ontology/ArchitecturalStructure;;Is <A> in <B>?;ASK where { <A> dbp:museum <B> };select distinct ?a, ?b where { ?a dbp:museum ?b };24df8c770302477ea971c6535bda9937
http://dbpedia.org/ontology/MusicGenre;http://dbpedia.org/ontology/TelevisionShow;;Is <A> inspired from <B>?;ASK where { <A> dbo:stylisticOrigin <B> };select distinct ?a, ?b where { ?a dbo:stylisticOrigin ?b };4d16a08db93348988792d0efc91d6ae6
http://dbpedia.org/ontology/Artist;http://dbpedia.org/ontology/WrittenWork;;Is <A> the illustration by of <B>?;ASK where { <B> dbp:illustrator <A> };select distinct ?a, ?b where { ?b dbp:illustrator ?a };a9898ec7205044eeb0890978e7e8c771
http://dbpedia.org/ontology/ArchitecturalStructure;http://dbpedia.org/ontology/Artwork;;Is <A> the museum of <B>?;ASK where { <B> dbp:museum <A> };select distinct ?a, ?b where { ?b dbp:museum ?a };78629f144207411aaaf8e5d9dd60022e
http://dbpedia.org/ontology/Artist;http://dbpedia.org/ontology/WrittenWork;;Is <A> the painter of <B>?;ASK where { <B> dbo:illustrator <A> };select distinct ?a, ?b where { ?b dbo:illustrator ?a };9b04388b468a4460a8e15aacaadf7853
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;Is <A> the previous work of <B>?;ASK where { <B> dbo:previousWork <A> };select distinct ?a, ?b where { ?b dbo:previousWork ?a };e4fd9eca450f4cb2ba2b2bc4f87102ad
;http://dbpedia.org/ontology/ArchitecturalStructure;;Is <B> a kind of <A>?;ASK where { <B> dbp:design <A> };select distinct ?a, ?b where { ?b dbp:design ?a };ff5b48cd5c5346e19a026ec964d8fc9d
http://dbpedia.org/ontology/ArchitecturalStructure;http://dbpedia.org/ontology/Artwork;;Is <B> in the <A>?;ASK where { <B> dbp:museum <A> };select distinct ?a, ?b where { ?b dbp:museum ?a };1ac2e9ce84374f78b8e3bcae3c1dcf03
http://dbpedia.org/ontology/ArchitecturalStructure;;;Is the <A> has the <B> architecture?;ASK where { <A> dbo:architecturalStyle <B> };select distinct ?a, ?b where { ?a dbo:architecturalStyle ?b };9ca41a6f79a14b689dcfae0764808cd6
;http://dbpedia.org/ontology/ArchitecturalStructure;;Is the <B> made in <A> style of architecture?;ASK where { <B> dbp:style <A> };select distinct ?a, ?b where { ?b dbp:style ?a };c53debb465374190985a381113d5e2e1
;http://dbpedia.org/ontology/ArchitecturalStructure;;Is the <B> made in the <A> architectural style?;ASK where { <B> dbp:architecture <A> };select distinct ?a, ?b where { ?b dbp:architecture ?a };36f0f09f20ba45daacd083a3e57bd8b2
;http://dbpedia.org/ontology/ArchitecturalStructure;;Is the <B> of the <A> style?;ASK where { <B> dbo:architecturalStyle <A> };select distinct ?a, ?b where { ?b dbo:architecturalStyle ?a };0f11a466b24a499382890661bf1fc5ef
http://dbpedia.org/ontology/Architect;;;List the architect of the buildings whose one of the architect is <A>?;SELECT DISTINCT ?uri where { ?x dbp:architect <A> . ?x dbp:architect ?uri . ?x a dbo:Building };select distinct ?a where { ?x dbp:architect ?a . ?x dbp:architect ?uri . ?x a dbo:Building };b70eb1cf6bbc449e8c384f3cc7c888bd
http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;;List the notable work of <A>?;SELECT DISTINCT ?uri where { <A> dbo:notableWork ?uri };select distinct ?a where { ?a dbo:notableWork ?uri };47315c1388d2459d9fa1ecc1723ffcf6
;;;List the significant building of the architect who also designed <A>?;SELECT DISTINCT ?uri where { ?x dbo:significantBuilding <A> . ?x dbo:significantBuilding ?uri . ?x a dbo:Architect };select distinct ?a where { ?x dbo:significantBuilding ?a . ?x dbo:significantBuilding ?uri . ?x a dbo:Architect };9de9adf4a6e94b7a8958262626c02714
http://dbpedia.org/ontology/ArchitecturalStructure;;;List the significant buildings of the arch. whose one of the important work is <A> ?;SELECT DISTINCT ?uri where { ?x dbo:significantBuilding <A> . ?x dbo:significantBuilding ?uri . ?x a dbo:Architect };select distinct ?a where { ?x dbo:significantBuilding ?a . ?x dbo:significantBuilding ?uri . ?x a dbo:Architect };2408eccc056c49ec8d1d6eb57ccc6b3c
http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;List the work edited by <A> and directed by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:editing <A> . ?uri dbo:director <B> . ?uri a dbo:Work };select distinct ?a, ?b where { ?uri dbp:editing ?a . ?uri dbo:director ?b . ?uri a dbo:Work };6f642ee5a00048ecaeff1c0e0412e4b6
http://dbpedia.org/ontology/ArchitecturalStructure;;;Name the architect of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:architect ?uri };select distinct ?a where { ?a dbp:architect ?uri };81ed6105f8064c79a73b3ad0ab2f0dcd
http://dbpedia.org/ontology/ArchitecturalStructure;http://dbpedia.org/ontology/ArchitecturalStructure;;Name the common architecture of the <B> and <A> ?;SELECT DISTINCT ?uri where { <B> dbo:architecturalStyle ?uri . <A> dbo:architecturalStyle ?uri };select distinct ?a, ?b where { ?b dbo:architecturalStyle ?uri . ?a dbo:architecturalStyle ?uri };a57fac7c18cc43cf9acdec289160a3f6
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;Name the fictional character painted by <B> and portrayed in <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:creator <B> . ?uri dbo:portrayer <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbo:creator ?b . ?uri dbo:portrayer ?a . ?uri a dbo:FictionalCharacter };37ea4965d2b64433a69300a0f28f5c84
;http://dbpedia.org/ontology/Film;;Name the fictional character who was in <A> and portrayer is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:series <A> . ?uri dbo:portrayer <B> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbo:series ?a . ?uri dbo:portrayer ?b . ?uri a dbo:FictionalCharacter };c00fa42c4aa643d4aad94464399b60ea
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Was <A> animated by <B>?;ASK where { <A> dbo:animator <B> };select distinct ?a, ?b where { ?a dbo:animator ?b };4afe90c0a2d24c9abb78be2dc41b3fa7
;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Was <A> animated by <B>?;ASK where { <A> dbo:animator <B> };select distinct ?a, ?b where { ?a dbo:animator ?b };a407d3e2f82d4a51b9e93485af1f0f4f
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/Artist;;Was <A> covered by <B>?;ASK where { <A> dbp:coverArtist <B> };select distinct ?a, ?b where { ?a dbp:coverArtist ?b };e6f3d395b66f485cb8901bfbcb1c4c0c
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/WikicatGuitars;;Was <A> famous for playing the <B>?;ASK where { <A> dbp:notableInstruments <B> };select distinct ?a, ?b where { ?a dbp:notableInstruments ?b };fdb525be2aca4cfda57372b41b1b6b79
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/WrittenWork;;Was <B> illustrated by <A>?;ASK where { <B> dbp:illustrator <A> };select distinct ?a, ?b where { ?b dbp:illustrator ?a };7d1d3175ed2b434ab6460785837338f2
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/MusicalWork;;Was <B> released before <A>?;ASK where { <B> dbo:previousWork <A> };select distinct ?a, ?b where { ?b dbo:previousWork ?a };f6acd592b57c4dac95edb3c787a5980e
http://dbpedia.org/ontology/ArchitecturalStructure;;;was the <A> architectured by <B>?;ASK where { <A> dbo:architecturalStyle <B> };select distinct ?a, ?b where { ?a dbo:architecturalStyle ?b };db1ffdbdbf064f84a06c61655ccb183a
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/Artist;;Was the <A> drawn <B>?;ASK where { <A> dbp:illustrator <B> };select distinct ?a, ?b where { ?a dbp:illustrator ?b };abca45aad53b4fdbaa4b40cd8f0a6490
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Writer;;Was the cover of <A> designed by <B>?;ASK where { <A> dbo:coverArtist <B> };select distinct ?a, ?b where { ?a dbo:coverArtist ?b };a47cf69b01104a72acb249b101f2746a
http://dbpedia.org/ontology/ComicsCreator;;;What all has been created by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:creators <A> };select distinct ?a where { ?uri dbp:creators ?a };11efb4f1e7bb4a4991a7d52f98ce78ac
http://dbpedia.org/ontology/Person;;;What are some important works of <A> citizens?;SELECT DISTINCT ?uri where { ?x dbp:nationality <A> . ?x dbo:notableWork ?uri };select distinct ?a where { ?x dbp:nationality ?a . ?x dbo:notableWork ?uri };c0f69ac1ab584bbaaca5272c9dd4aa74
http://dbpedia.org/ontology/ArchitecturalStructure;;;What are the important buildings of the architect whose one of the significant building is <A>?;SELECT DISTINCT ?uri where { ?x dbo:significantBuilding <A> . ?x dbo:significantBuilding ?uri . ?x a dbo:Architect };select distinct ?a where { ?x dbo:significantBuilding ?a . ?x dbo:significantBuilding ?uri . ?x a dbo:Architect };ab45c23c549d43d290b260f9930c647e
;;;What is common between genre of <A> and purpose of <B>;SELECT DISTINCT ?uri where { <A> dbp:genre ?uri . <B> dbp:purpose ?uri };select distinct ?a, ?b where { ?a dbp:genre ?uri . ?b dbp:purpose ?uri };4ae6b12b53054ad29b07c61a48527249
http://dbpedia.org/ontology/ArchitecturalStructure;;;What is the architecture of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:architecturalStyle ?uri };select distinct ?a where { ?a dbo:architecturalStyle ?uri };d3c142c23fcd445e8acfe1320c5cddfb
;;;What is the city nearest to the historic place whose architect is <A>?;SELECT DISTINCT ?uri where { ?x dbp:architect <A> . ?x dbo:nearestCity ?uri . ?x a dbo:HistoricPlace };select distinct ?a where { ?x dbp:architect ?a . ?x dbo:nearestCity ?uri . ?x a dbo:HistoricPlace };7f8414559c5f475ead1ee872da7dd371
;;;What is the game whose genre is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:genre <A> . ?uri a dbo:Game };select distinct ?a where { ?uri dbo:genre ?a . ?uri a dbo:Game };a5503f4d85444a1bbe8edc89a85b5984
;;;What is the purpose of the <B> which is genere of <A>?;SELECT DISTINCT ?uri where { <B> dbp:purpose ?uri . <A> dbo:genre ?uri };select distinct ?a, ?b where { ?b dbp:purpose ?uri . ?a dbo:genre ?uri };b34ea6d0eb0e4dc9878f34a21bde3842
http://dbpedia.org/ontology/ArchitecturalStructure;;;What is the resting place of the engineer who was the architect of <A>?;SELECT DISTINCT ?uri where { <A> dbo:architect ?x . ?x dbo:restingPlace ?uri };select distinct ?a where { ?a dbo:architect ?x . ?x dbo:restingPlace ?uri };81672c09f09c4704b6188617b549a4c1
http://dbpedia.org/ontology/MusicalWork;;;What is the second track list of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:subsequentWork ?uri };select distinct ?a where { ?a dbo:subsequentWork ?uri };f8fbc5bc7c8a4272bcfeae43342ee9b0
;;;What is the style of architecture of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:architecturalStyle ?uri };select distinct ?a where { ?a dbo:architecturalStyle ?uri };2a11aeb11ce248cfaf63be2b6701fe9a
;;;What is the style of architecture of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:architecturalStyle ?uri };select distinct ?a where { ?a dbo:architecturalStyle ?uri };0373e167503941919cb83707358aee72
http://dbpedia.org/ontology/ArchitecturalStructure;;;What is the style of architecture of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:architecturalStyle ?uri };select distinct ?a where { ?a dbo:architecturalStyle ?uri };a17ff3e0133f4d449e03ef1930da70d9
http://dbpedia.org/ontology/MusicGenre;;;What is the stylistic origin of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:stylisticOrigin ?uri };select distinct ?a where { ?a dbo:stylisticOrigin ?uri };d4dd2c6ad55449e2974b79ecbbf14f2c
http://dbpedia.org/ontology/Person;;;What kind of buildings were designed by <A>?;SELECT DISTINCT ?uri where { ?x dbo:architect <A> . ?x dbo:type ?uri . ?x a dbo:Building };select distinct ?a where { ?x dbo:architect ?a . ?x dbo:type ?uri . ?x a dbo:Building };4c467d0fc1fd40a199f7c5588d0aaee0
;;;What kind of games are made by <A>?;SELECT DISTINCT ?uri where { ?x dbo:publisher <A> . ?x dbp:genre ?uri . ?x a dbo:VideoGame };select distinct ?a where { ?x dbo:publisher ?a . ?x dbp:genre ?uri . ?x a dbo:VideoGame };23a0e9e271d44ba286716b46fd3eb912
;;;What kind of games does <A> games develop?;SELECT DISTINCT ?uri where { ?x dbo:developer <A> . ?x dbo:genre ?uri . ?x a dbo:VideoGame };select distinct ?a where { ?x dbo:developer ?a . ?x dbo:genre ?uri . ?x a dbo:VideoGame };7e638a07671f4e0dbd9a400eac8f5de4
http://dbpedia.org/ontology/WrittenWork;;;What subjects does the subsequent work of <A> deals with ?;SELECT DISTINCT ?uri where { <A> dbo:subsequentWork ?x . ?x dbp:subject ?uri };select distinct ?a where { ?a dbo:subsequentWork ?x . ?x dbp:subject ?uri };0ac2d94a73f64e1181b207736b31a127
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;What was created by <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <A> . ?uri dbo:creator <B> };select distinct ?a, ?b where { ?uri dbo:creator ?a . ?uri dbo:creator ?b };67455a7a7dde4d828284efb85a8ab936
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;What work has been directed by <A> and distributed by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:director <A> . ?uri dbp:distributor <B> . ?uri a dbo:Work };select distinct ?a, ?b where { ?uri dbp:director ?a . ?uri dbp:distributor ?b . ?uri a dbo:Work };0551936fa2424f109acea056733b00bf
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Writer;;What would be the most important creation which involved both <B> and <A> ?;SELECT DISTINCT ?uri where { <B> dbo:notableWork ?uri . <A> dbo:notableWork ?uri };select distinct ?a, ?b where { ?b dbo:notableWork ?uri . ?a dbo:notableWork ?uri };2435496704084a5992c396fcba62cd33
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/MusicalWork;;Whcih creator of <A> also created subsequent work of <B> ?;SELECT DISTINCT ?uri where { <B> dbo:subsequentWork ?uri . <A> dbp:creator ?uri };select distinct ?a, ?b where { ?b dbo:subsequentWork ?uri . ?a dbp:creator ?uri };670aa15c90d24e1e973eaeb3581ebacd
;;;Where can I find some buildings of <A>?;SELECT DISTINCT ?uri where { ?x dbp:architecturalStyle <A> . ?x dbp:address ?uri . ?x a dbo:Building };select distinct ?a where { ?x dbp:architecturalStyle ?a . ?x dbp:address ?uri . ?x a dbo:Building };58c006275fb04301a88992b18018e5f8
http://dbpedia.org/ontology/Band;;;Where did the genres originate which can found in <A>?;SELECT DISTINCT ?uri where { <A> dbp:genre ?x . ?x dbo:stylisticOrigin ?uri };select distinct ?a where { ?a dbp:genre ?x . ?x dbo:stylisticOrigin ?uri };7bd1752d4a3843d1b75a99a3c4131114
http://dbpedia.org/ontology/Person;;;Where does the network cofounded by <A> air its shows?;SELECT DISTINCT ?uri where { ?x dbp:founder <A> . ?x dbp:broadcastArea ?uri . ?x a dbo:BroadcastNetwork };select distinct ?a where { ?x dbp:founder ?a . ?x dbp:broadcastArea ?uri . ?x a dbo:BroadcastNetwork };5e96bbf76e3e40b2a62b009a2c1e48ea
;;;Which <A> can be said as a <B>?;SELECT DISTINCT ?uri where { ?uri dbo:genre <A> . ?uri dbo:genre <B> };select distinct ?a, ?b where { ?uri dbo:genre ?a . ?uri dbo:genre ?b };d841f35943ac4a9cad0f6e33ba3a8650
http://dbpedia.org/ontology/ArchitecturalStructure;http://dbpedia.org/ontology/ArchitecturalStructure;;Which architect of <A> was also tenant of <B> /';SELECT DISTINCT ?uri where { <A> dbp:architect ?uri . <B> dbo:tenant ?uri };select distinct ?a, ?b where { ?a dbp:architect ?uri . ?b dbo:tenant ?uri };4a64f2d15b0b43d8a9e07d44a7be8966
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/ArchitecturalStructure;;Which architect of the <B> is the branch of the <A>?;SELECT DISTINCT ?uri where { <B> dbp:architect ?uri . <A> dbp:branch ?uri };select distinct ?a, ?b where { ?b dbp:architect ?uri . ?a dbp:branch ?uri };ffe030d0d0234e8498265e9d4826ab1b
http://dbpedia.org/ontology/Person;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/ComicsCreator;;Which are the comics characters painted by <B> and created by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <B> . ?uri dbp:creators <A> . ?uri a dbo:ComicsCharacter };select distinct ?a, ?b where { ?uri dbo:creator ?b . ?uri dbp:creators ?a . ?uri a dbo:ComicsCharacter };268bbb26a2164faf852c530fc8ae5320
http://dbpedia.org/ontology/WrittenWork;;;Which awards did the creator of <A> won ?;SELECT DISTINCT ?uri where { <A> dbo:author ?x . ?x dbo:award ?uri . ?x a dbo:ComicsCreator };select distinct ?a where { ?a dbo:author ?x . ?x dbo:award ?uri . ?x a dbo:ComicsCreator };214ff25fe3d84f69a29dc354d42a6207
http://dbpedia.org/ontology/ComicsCreator;;;Which comic characters are painted by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <A> . ?uri a dbo:ComicsCharacter };select distinct ?a where { ?uri dbo:creator ?a . ?uri a dbo:ComicsCharacter };f0a9f1ca14764095ae089b152e0e7f12
http://dbpedia.org/ontology/Person;;;Which comic characters were created by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:creators <A> . ?uri a dbo:ComicsCharacter };select distinct ?a where { ?uri dbp:creators ?a . ?uri a dbo:ComicsCharacter };1ebfba20e07d4dceb706cb7d0e02f7d5
http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Film;;Which creation of <A> was portrayed in <B>;SELECT DISTINCT ?uri where { ?uri dbo:portrayer <B> . ?uri dbp:creator <A> };select distinct ?a, ?b where { ?uri dbo:portrayer ?b . ?uri dbp:creator ?a };fe5a0610c6e741c2a1b2f059c072dfbf
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/MusicalWork;;Which director of <A> also released <B> ?;SELECT DISTINCT ?uri where { <B> dbp:artist ?uri . <A> dbp:director ?uri };select distinct ?a, ?b where { ?b dbp:artist ?uri . ?a dbp:director ?uri };2a96555f9e0048bbb838499c8484797b
http://dbpedia.org/class/yago/Editor110044879;;;Which fictional character is portrayed by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:portrayer <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbp:portrayer ?a . ?uri a dbo:FictionalCharacter };8a6304978223453caa7f58e579290646
http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Person;;Which fictional character portrayed by <A> has <B> as family member ?;SELECT DISTINCT ?uri where { ?uri dbp:family <B> . ?uri dbp:portrayer <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:family ?b . ?uri dbp:portrayer ?a . ?uri a dbo:FictionalCharacter };d5c3a119f9f8443584725cba541904f6
http://dbpedia.org/ontology/Person;http://dbpedia.org/class/yago/Editor110044879;;Which fictional character portrayed by <B> has <A> as family ?;SELECT DISTINCT ?uri where { ?uri dbp:portrayer <B> . ?uri dbp:family <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:portrayer ?b . ?uri dbp:family ?a . ?uri a dbo:FictionalCharacter };f14f313e8dc0452884affe033d0a04fe
http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Film;;Which fictional character portrayed in <B> is painted by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:portrayer <B> . ?uri dbo:creator <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbo:portrayer ?b . ?uri dbo:creator ?a . ?uri a dbo:FictionalCharacter };380331c1f63e4822be0531e79d89d530
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;Which fictional character sculpted by <B>n was portrayed in <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:creator <B> . ?uri dbo:portrayer <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:creator ?b . ?uri dbo:portrayer ?a . ?uri a dbo:FictionalCharacter };7c11228a01e24c0b81378d51b50efe43
http://dbpedia.org/class/yago/Editor110044879;;;Which fictional character's portrayer was edited by <A>?;SELECT DISTINCT ?uri where { ?x dbp:editing <A> . ?uri dbo:portrayer ?x . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:editing ?a . ?uri dbo:portrayer ?x . ?uri a dbo:FictionalCharacter };76c3eb3bdc2b4a3d846ba7a10155535c
;;;Which fictional character's relative is <B> and belongs to <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:relatives <B> . ?uri dbo:species <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:relatives ?b . ?uri dbo:species ?a . ?uri a dbo:FictionalCharacter };7282c5f557974ec99165996f0b27200a
http://dbpedia.org/ontology/Person;;;Which fictional character's relatives were made by <A>?;SELECT DISTINCT ?uri where { ?x dbo:creator <A> . ?uri dbp:relatives ?x . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?x dbo:creator ?a . ?uri dbp:relatives ?x . ?uri a dbo:FictionalCharacter };74671972de564fbe97ece8a85fd86fcd
http://dbpedia.org/ontology/Artwork;;;which person created the <A>?;SELECT DISTINCT ?uri where { <A> dbp:artist ?uri };select distinct ?a where { ?a dbp:artist ?uri };eb7076ae122e4f3bbb01b33be971ffc2
;;;Which sport of <B> is also the genre of <A>;SELECT DISTINCT ?uri where { <A> dbp:genre ?uri . <B> dbo:sport ?uri };select distinct ?a, ?b where { ?a dbp:genre ?uri . ?b dbo:sport ?uri };6e739eefd2bb47bb96e6386e4f9cb125
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Writer;;Which work is both <B> and <A> both known for ?;SELECT DISTINCT ?uri where { <B> dbo:notableWork ?uri . <A> dbo:notableWork ?uri };select distinct ?a, ?b where { ?b dbo:notableWork ?uri . ?a dbo:notableWork ?uri };bedb3683384446c4af8fa5348c967363
;;;Who are the animator of <A>?;SELECT DISTINCT ?uri where { <A> dbo:animator ?uri };select distinct ?a where { ?a dbo:animator ?uri };58f1836b2739462a8eee1fb265dfabf3
http://dbpedia.org/ontology/TelevisionEpisode;;;Who are the relatives of the character after which <A> was made?;SELECT DISTINCT ?uri where { ?x dbo:subsequentWork <A> . ?uri dbo:relative ?x };select distinct ?a where { ?x dbo:subsequentWork ?a . ?uri dbo:relative ?x };3f32bfb3b7df4136b3983a9dfe3beed0
http://dbpedia.org/ontology/Artwork;http://dbpedia.org/ontology/Artwork;;Who created the <B> and also the <A> ?;SELECT DISTINCT ?uri where { <B> dbp:artist ?uri . <A> dbp:artist ?uri };select distinct ?a, ?b where { ?b dbp:artist ?uri . ?a dbp:artist ?uri };ee30b589024f41ba94eeeb43ca06b2cb
http://dbpedia.org/ontology/ArchitecturalStructure;;;Who designed <A>?;SELECT DISTINCT ?uri where { <A> dbp:designer ?uri };select distinct ?a where { ?a dbp:designer ?uri };cc67a19255ce4bf6938888a64e0c3b19
;;;Who designed the <A>?;SELECT DISTINCT ?uri where { <A> dbo:designer ?uri };select distinct ?a where { ?a dbo:designer ?uri };13dbeaf27a1e47de9803518e1c666298
http://dbpedia.org/ontology/ArchitecturalStructure;;;Who is the architect of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:architect ?uri };select distinct ?a where { ?a dbp:architect ?uri };9464454dd9bc489387bee11d1e7cd022
;;;Who is the designer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:designer ?uri };select distinct ?a where { ?a dbp:designer ?uri };900865ae340c40d793d500a8d01ca479
http://dbpedia.org/ontology/MusicalWork;;;Who is the performer of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:artist ?uri };select distinct ?a where { ?a dbo:artist ?uri };89689724b652439cbc83fd0be32e637c
;;;Who maintains the stuff designed by the <A>?;SELECT DISTINCT ?uri where { ?x dbp:designer <A> . ?x dbo:maintainedBy ?uri };select distinct ?a where { ?x dbp:designer ?a . ?x dbo:maintainedBy ?uri };5c175091321340c3bb110a48d78c7d74
;;;Who was the designer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:designer ?uri };select distinct ?a where { ?a dbp:designer ?uri };0e401e47838c4dba988eda6a6838e8fe
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Film;;Who was the director of photography of <A> and the animator of <B>?;SELECT DISTINCT ?uri where { <A> dbp:cinematography ?uri . <B> dbp:animator ?uri };select distinct ?a, ?b where { ?a dbp:cinematography ?uri . ?b dbp:animator ?uri };c750e7c0608b41ceb0f89a608bc35174
http://dbpedia.org/ontology/ArchitecturalStructure;;;Whose artworks are in <A>?;SELECT DISTINCT ?uri where { ?x dbp:museum <A> . ?x dbp:artist ?uri . ?x a dbo:Artwork };select distinct ?a where { ?x dbp:museum ?a . ?x dbp:artist ?uri . ?x a dbo:Artwork };a1f6a0f1f36d4e55881ef792f416db91
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;Whose creators are <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <B> . ?uri dbo:creator <A> };select distinct ?a, ?b where { ?uri dbo:creator ?b . ?uri dbo:creator ?a };536bed978e9d4db1bc5789baf5d939d0
http://dbpedia.org/ontology/Person;;;Whose famous works have been illustrated by <A>?;SELECT DISTINCT ?uri where { ?x dbp:illustrator <A> . ?uri dbo:notableWork ?x };select distinct ?a where { ?x dbp:illustrator ?a . ?uri dbo:notableWork ?x };7c0d1f9a0e5e430ea5c1edbef2007075
http://dbpedia.org/ontology/ArchitecturalStructure;;;Whose work is in the <A>?;SELECT DISTINCT ?uri where { ?x dbp:museum <A> . ?x dbp:artist ?uri . ?x a dbo:Artwork };select distinct ?a where { ?x dbp:museum ?a . ?x dbp:artist ?uri . ?x a dbo:Artwork };5d06f0ac2946469f965844d87feb57c4
;;;<A> and <B> is produced by which company?;SELECT DISTINCT ?uri where { <A> dbp:manufacturer ?uri . <B> dbp:manufacturer ?uri };select distinct ?a, ?b where { ?a dbp:manufacturer ?uri . ?b dbp:manufacturer ?uri };b727f0394eae4116bc3af96be4da1c1d
http://dbpedia.org/ontology/Broadcaster;;;<A> broadcasted in what area, which also has the <B>?;SELECT DISTINCT ?uri where { <B> dbp:location ?uri . <A> dbo:broadcastArea ?uri };select distinct ?a, ?b where { ?b dbp:location ?uri . ?a dbo:broadcastArea ?uri };5a8d27913f2348a5a0a9641d53ef1704
http://dbpedia.org/ontology/Person;;;<A> cinematographed how many things?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:cinematography <A> };select distinct ?a where { ?uri dbo:cinematography ?a };d1087a6ae2e640ee9b0c1458c8447ee8
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;<A> did a guest appearance on which series?;SELECT DISTINCT ?uri where { ?x dbp:guests <A> . ?x dbo:series ?uri };select distinct ?a where { ?x dbp:guests ?a . ?x dbo:series ?uri };f397d4e121954f05be803892461d82f9
http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;<A> has acted in which movie ?;SELECT DISTINCT ?uri where { ?uri dbo:starring <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:starring ?a . ?uri a dbo:Film };612fd54a14cf4ea1bd327ac4ab6a3475
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;<A> has acted in which movies ?;SELECT DISTINCT ?uri where { ?uri dbp:starring <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:starring ?a . ?uri a dbo:Film };66867f2d03ca4db8b5d199cad01a7dee
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;<A> has been the presenter of how many things?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:presenter <A> };select distinct ?a where { ?uri dbo:presenter ?a };1c0073aa4e3142589ffd0e487b5742da
http://dbpedia.org/ontology/TelevisionEpisode;;;<A> has hosted how many guests?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:guests ?uri };select distinct ?a where { ?a dbp:guests ?uri };2165408d4ec94d15a8cd6d639dffcfdc
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;<A> has narrated in which movie?;SELECT DISTINCT ?uri where { ?uri dbp:narrator <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:narrator ?a . ?uri a dbo:Film };6e5cd8ecf19a490b8da0b62c0e2a9a30
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;<A> is the executive producer of the series having how many fictional characters?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:executiveProducer <A> . ?uri dbo:series ?x . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?x dbo:executiveProducer ?a . ?uri dbo:series ?x . ?uri a dbo:FictionalCharacter };728abc0613c4486dac29a63aa6e90537
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;<A> is the presenter of what TV show?;SELECT DISTINCT ?uri where { ?uri dbp:presenter <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:presenter ?a . ?uri a dbo:TelevisionShow };74833a9d360e4944ba62ebb5ff1633fb
http://dbpedia.org/ontology/Publisher;;;<A> is the publisher of which series?;SELECT DISTINCT ?uri where { ?x dbp:publisher <A> . ?x dbo:series ?uri };select distinct ?a where { ?x dbp:publisher ?a . ?x dbo:series ?uri };f0d39660f1f94a2098c5ecae0c7159ff
http://dbpedia.org/ontology/Broadcaster;;;<A> is the sister channel of networks having which shows?;SELECT DISTINCT ?uri where { ?x dbp:sisterNames <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:sisterNames ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };37dd8f24e04d4c9693e47be13aca643a
http://dbpedia.org/ontology/Writer;;;<A> is the writer of which television show?;SELECT DISTINCT ?uri where { ?uri dbp:writer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:writer ?a . ?uri a dbo:TelevisionShow };2dccee64e1754b3ebb0e0b7dbd8f53e5
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Film;;<A> is writer and <B> tone is company of which TV show ?;SELECT DISTINCT ?uri where { ?uri dbp:writer <A> . ?uri dbp:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:writer ?a . ?uri dbp:company ?b . ?uri a dbo:TelevisionShow };ef953fcfd8774d258a795e40f2c3858b
;;;<A> people have edited which movies?;SELECT DISTINCT ?uri where { ?x dbo:birthPlace <A> . ?uri dbp:editing ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbp:editing ?x . ?uri a dbo:Film };d19c3af9ab8340149565596d32439a0c
http://dbpedia.org/class/yago/FilmMaker110088390;;;<A> produce how many movies?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:producer <A> };select distinct ?a where { ?uri dbo:producer ?a };74bea979df0f49f0aafba5f2d1be9297
http://dbpedia.org/ontology/MusicalWork;;;<A> the theme album of which show ?;SELECT DISTINCT ?uri where { <A> dbo:album ?uri };select distinct ?a where { ?a dbo:album ?uri };cff31d6e2dee48de9fc46d0ecb40ced5
http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;;<A> wrote how many screenplays?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:screenplay <A> };select distinct ?a where { ?uri dbp:screenplay ?a };47255156e21340db90b083e6f65946bd
http://dbpedia.org/ontology/Person;;;<A>'s work can be divided into how many series?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:author <A> . ?x dbo:series ?uri };select distinct ?a where { ?x dbp:author ?a . ?x dbo:series ?uri };3baa786d346248839da91be72db9ca83
;;;<B> from, and is produced by <A>?;SELECT DISTINCT ?uri where { <A> dbo:product ?uri . <B> dbo:series ?uri };select distinct ?a, ?b where { ?a dbo:product ?uri . ?b dbo:series ?uri };a600e69fac2b46a58ff1d1fe22877e45
http://dbpedia.org/ontology/Broadcaster;;;By whom is the broadcaster network <A> founded?;SELECT DISTINCT ?uri where { <A> dbo:foundedBy ?uri };select distinct ?a where { ?a dbo:foundedBy ?uri };1fe29c8d282c43c8ba68b809c317857b
http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Count the movies edited by <A> and were directed by <B>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:editing <A> . ?uri dbo:director <B> };select distinct ?a, ?b where { ?uri dbp:editing ?a . ?uri dbo:director ?b };ef08c3edfb5e4c85ba7a33a77a5f0119
;;;Count the movies in <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:language <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:language ?a . ?uri a dbo:Film };6bd942c2f0cd4533bdc21957bc6bd75f
http://dbpedia.org/ontology/WrittenWork;;;Count the number of actors in <A>.;SELECT DISTINCT COUNT(?uri) where { <A> dbp:starring ?uri };select distinct ?a where { ?a dbp:starring ?uri };973af98c92e24d1793c45d8c0ed3e83b
;;;Count the number of broadcast area of the TV stations which serves in <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:broadcastArea <A> . ?x dbp:broadcastArea ?uri };select distinct ?a where { ?x dbo:broadcastArea ?a . ?x dbp:broadcastArea ?uri };925fba8fe99f4fd68594b4e4ca58f5ba
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;;;Count the number of characters in <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:characters ?uri . ?uri a dbo:ComicsCharacter };select distinct ?a where { ?a dbp:characters ?uri . ?uri a dbo:ComicsCharacter };f705b781b41d468f94a33678d84952e3
;;;Count the number of characters of the play whose one of the character is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:characters <A> . ?x dbp:characters ?uri };select distinct ?a where { ?x dbp:characters ?a . ?x dbp:characters ?uri };e4ff3218dca54f6e816707115b42aea9
http://dbpedia.org/ontology/Person;;;Count the number of movies whose distributor is <B> and director of photography is <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:distributor <B> . ?uri dbo:cinematography <A> };select distinct ?a, ?b where { ?uri dbp:distributor ?b . ?uri dbo:cinematography ?a };9993c21e0dba4189a4d49112ea149a76
;;;Count the number of movies whose editors were born in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:birthPlace <A> . ?uri dbp:editing ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbp:editing ?x . ?uri a dbo:Film };c19ff6e63850447cbc240443c789c4f2
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;Count the number of shows whose creators are <B> and <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:creator <B> . ?uri dbo:creator <A> };select distinct ?a, ?b where { ?uri dbo:creator ?b . ?uri dbo:creator ?a };1bbfeeb6913d4de6a7e96c9a64ec101f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Count the total number of cast member of the television shows whose actress is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:starring <A> . ?x dbp:starring ?uri };select distinct ?a where { ?x dbp:starring ?a . ?x dbp:starring ?uri };7472a240a44b44a69fecf3305677e72e
http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Film;;Did <A> edit <B>?;ASK where { <B> dbp:editing <A> };select distinct ?a, ?b where { ?b dbp:editing ?a };6d98acc27b4e4a96ae51410061611f08
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/TelevisionEpisode;;Did <A> guest in <B>?;ASK where { <B> dbp:guests <A> };select distinct ?a, ?b where { ?b dbp:guests ?a };502ef78b55df4f73beb3f5df73483a51
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879|http://dbpedia.org/ontology/ComicsCreator;http://dbpedia.org/ontology/TelevisionShow;;Did <A> narrate <B> tv show?;ASK where { <B> dbo:narrator <A> };select distinct ?a, ?b where { ?b dbo:narrator ?a };4d935fb5d0694c4fbfba00b5d22705a2
;;;Directors of which movies are buried in <A>?;SELECT DISTINCT ?uri where { ?x dbo:restingPlace <A> . ?uri dbp:director ?x };select distinct ?a where { ?x dbo:restingPlace ?a . ?uri dbp:director ?x };30b207243bc34347a7cc38bb8cb88fd0
;http://dbpedia.org/ontology/MusicGenre;;Does <A> play <B>?;ASK where { <A> dbo:programmeFormat <B> };select distinct ?a, ?b where { ?a dbo:programmeFormat ?b };efac36cec91343a9b9f1ede98613d8b2
http://dbpedia.org/ontology/MusicalArtist;;;Give me a count of all the producers of all the movies whose music was done by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:music <A> . ?x dbp:producer ?uri };select distinct ?a where { ?x dbp:music ?a . ?x dbp:producer ?uri };1462640075fb4176a9db74b1e76bb1eb
;;;Give me a count of movies distributed by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:distributor <A> };select distinct ?a where { ?uri dbp:distributor ?a };7467291024494dcd878d0a375b75d0a8
http://dbpedia.org/class/yago/Editor110044879;;;Give me a count of movies whose editor is <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:editing <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:editing ?a . ?uri a dbo:Film };eee1bb47d0ac48a0a79142e2a0ae6f48
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;Give me a count of movies whose film editor is <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:editing <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:editing ?a . ?uri a dbo:Film };6f8df171b716419ba1bcf20b5e90e4b1
http://dbpedia.org/class/yago/FilmMaker110088390;;;Give me a count of movies whose producer is <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:producer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:producer ?a . ?uri a dbo:Film };9e0cf38ea6bf48b18ba968d51da06694
;;;Give me all tv shows which are based in <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:location <A> . ?uri dbo:location <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:location ?a . ?uri dbo:location ?b . ?uri a dbo:TelevisionShow };f5389602a5104bc0b3691a6dc0b6aed4
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Give me some series related to the one which had <A> in them.;SELECT DISTINCT ?uri where { ?x dbp:starring <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:starring ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };f2e2e1b4a67049c092236c11cfbef795
;;;Give me some series whose network's owning company is <A>?;SELECT DISTINCT ?uri where { ?x dbo:owningCompany <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:owningCompany ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };534303fe37fc4bf7b3ab0221994e27c4
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Broadcaster;;Give me some shows owned by <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:network <A> . ?uri dbo:network <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:network ?a . ?uri dbo:network ?b . ?uri a dbo:TelevisionShow };0130934ed9434be69d31f035e062979a
http://dbpedia.org/ontology/Writer;;;Give me some shows related to the ones created by <A>;SELECT DISTINCT ?uri where { ?x dbp:creator <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:creator ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };c75bb3f9a6a54bc995eec394e964b45e
;;;Give me some TV stations whose network's main language is <A>?;SELECT DISTINCT ?uri where { ?x dbo:language <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionStation };select distinct ?a where { ?x dbo:language ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionStation };5405afee486944e1976b7ba7911f045d
http://dbpedia.org/ontology/Film;;;Give me the characters who last appeared in <A>;SELECT DISTINCT ?uri where { ?uri dbp:last <A> };select distinct ?a where { ?uri dbp:last ?a };5c6a09d1e72a45429f86bae07bb422e6
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/ComicsCreator;;;Give me the count of all the names of characters created by <A>;SELECT DISTINCT COUNT(?uri) where { ?x dbp:creators <A> . ?x dbp:characterName ?uri };select distinct ?a where { ?x dbp:creators ?a . ?x dbp:characterName ?uri };032949490f454dbabd4797646d3e840d
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Give me the sitcoms where <B> and <A> gave voice?;SELECT DISTINCT ?uri where { ?uri dbp:voices <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };da876b5724b64e209959a34efc201d5f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/Writer;;;Give me the total number of Guests of the television episodes whose one of the Guests is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:guests <A> . ?x dbp:guests ?uri };select distinct ?a where { ?x dbp:guests ?a . ?x dbp:guests ?uri };0158182c73724ee685ea4dc4dae2b647
http://dbpedia.org/ontology/Person;;;How many TV shows were made by someone who was associated with <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:associatedBand <A> . ?uri dbp:creator ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:associatedBand ?a . ?uri dbp:creator ?x . ?uri a dbo:TelevisionShow };938bb65e3ede442c84c63fc27fb7b4ea
;;;How many broadcast area of the television stations exists whose broadcast area is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:broadcastArea <A> . ?x dbp:broadcastArea ?uri };select distinct ?a where { ?x dbp:broadcastArea ?a . ?x dbp:broadcastArea ?uri };50af4130157947afa9979e302f6247f8
http://dbpedia.org/ontology/TelevisionShow;;;How many characters are there in <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:series <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbo:series ?a . ?uri a dbo:FictionalCharacter };af581de0b01f4908a95d361a6416a13c
http://dbpedia.org/ontology/Person;;;How many characters were made by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:creators <A> };select distinct ?a where { ?uri dbp:creators ?a };444b6f68ae4145c1a8e151fe606ade0a
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;How many fictional characters are there in a series in which <A> acted?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:starring <A> . ?uri dbo:series ?x . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?x dbo:starring ?a . ?uri dbo:series ?x . ?uri a dbo:FictionalCharacter };c476c7a2e55b4c00a92923d7d08a1e5f
;;;How many fictional characters were <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:species <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbo:species ?a . ?uri a dbo:FictionalCharacter };9af86fea79ba45b599a74bbd5341a401
http://dbpedia.org/ontology/TelevisionEpisode;;;How many guests have been there <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:guests ?uri };select distinct ?a where { ?a dbp:guests ?uri };e97f754148fd4c2f811c6bf0b04685ad
http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;How many movies are directed by the spouse of <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:partner <A> . ?uri dbp:director ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:partner ?a . ?uri dbp:director ?x . ?uri a dbo:Film };a43a3581442948429aaefa12283d9aa5
;;;How many movies are distributed by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:distributor <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:distributor ?a . ?uri a dbo:Film };6aa814339d6747cd82a103df2b4c228f
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;How many movies did <A> direct?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:director <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:director ?a . ?uri a dbo:Film };55a0f9a155d248a4b36850165c830f0b
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;How many movies did <A> direct?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:director <A> };select distinct ?a where { ?uri dbo:director ?a };b8f8719333604e9b9a5e34e7babe9e91
http://dbpedia.org/class/yago/FilmMaker110088390;;;How many movies did <A> produce?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:producer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:producer ?a . ?uri a dbo:Film };398001dda0f745a3a783b7916f2b2376
http://dbpedia.org/ontology/Person;;;How many movies have a screenplay located in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:birthPlace <A> . ?uri dbp:screenplay ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbp:screenplay ?x . ?uri a dbo:Film };20c51164ad5a4b42acd9a417f6770edc
http://dbpedia.org/ontology/Person;;;How many movies have been cinematographed by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:cinematography <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:cinematography ?a . ?uri a dbo:Film };e8f04ab2f1d04379945b8d384d9b4c44
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;How many movies have been directed by <A> ?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:director <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:director ?a . ?uri a dbo:Film };8f627e41b2a9414c9787d98739f906f1
http://dbpedia.org/ontology/Person;;;How many movies have been directed by almunies of <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:education <A> . ?uri dbo:director ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:education ?a . ?uri dbo:director ?x . ?uri a dbo:Film };a9dbfce5738c47e2bb59273f4492c7b3
http://dbpedia.org/ontology/Person;;;How many movies have had a cinematographer who died in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:deathPlace <A> . ?uri dbp:cinematography ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:deathPlace ?a . ?uri dbp:cinematography ?x . ?uri a dbo:Film };77b265d0903641b2b810680c1bd2bb67
http://dbpedia.org/ontology/Person;;;How many movies were cinematographed by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:cinematography <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:cinematography ?a . ?uri a dbo:Film };443a00fd2e584e189bc1bd31ac97b83f
;;;How many movies were directed by the graduate of <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:education <A> . ?uri dbp:director ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:education ?a . ?uri dbp:director ?x . ?uri a dbo:Film };458d42b5dd84407f9c58816fa06defdd
http://dbpedia.org/class/yago/Entertainer109616922;;;How many other characters are there of the plays which has a characters name <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:characters <A> . ?x dbp:characters ?uri };select distinct ?a where { ?x dbp:characters ?a . ?x dbp:characters ?uri };7dfa4ea0de86402fadf35b56230094d7
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Writer;;;How many other Guests are there of the television episodes whose Guests is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:guests <A> . ?x dbp:guests ?uri };select distinct ?a where { ?x dbp:guests ?a . ?x dbp:guests ?uri };f018611c46d2443ca03755ae47d1568b
;;;How many other race are there of the adult (pornographic) actors whose ethnicity is <A> ?;SELECT COUNT(DISTINCT(?uri)) WHERE { ?x dbo:ethnicity <A>. ?x a dbo:AdultActor. ?x dbo:ethnicity ?uri};select distinct ?a where { ?x dbo:ethnicity ?a. ?x a dbo:AdultActor};c8a69f49e96b42b896b722fd19267e70
http://dbpedia.org/ontology/Broadcaster;;;How many people have been presenters for <A> shows?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:channel <A> . ?x dbp:presenter ?uri . ?uri a dbo:Person };select distinct ?a where { ?x dbo:channel ?a . ?x dbp:presenter ?uri . ?uri a dbo:Person };772f236fcf8248868491ba2393667c59
http://dbpedia.org/ontology/Band;;;How many people have voiced characters sculpted by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:creator <A> . ?x dbo:voice ?uri };select distinct ?a where { ?x dbp:creator ?a . ?x dbo:voice ?uri };6d4c25756b6346589f78aefa48a0d4ec
;;;How many people have written stuff broadcasted on the <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:network <A> . ?x dbp:writer ?uri . ?uri a dbo:Person };select distinct ?a where { ?x dbo:network ?a . ?x dbp:writer ?uri . ?uri a dbo:Person };9fcaa73b3dca47a9a3bf12a42abe54b7
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;How many producers have casted <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:starring <A> . ?x dbp:producer ?uri };select distinct ?a where { ?x dbp:starring ?a . ?x dbp:producer ?uri };8679debda0a14d0a87042b3eb712b95b
;;;How many producers have worked for <A> productions?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:company <A> . ?x dbo:producer ?uri };select distinct ?a where { ?x dbp:company ?a . ?x dbo:producer ?uri };ead02f462db84844be242c56c4066037
http://dbpedia.org/ontology/Broadcaster;;;How many shows are aired on <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:network ?a . ?uri a dbo:TelevisionShow };e3fa455d918040598237f76a011b287b
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;How many shows are made by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:creator <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:creator ?a . ?uri a dbo:TelevisionShow };e6d36153fb7c4298a55e5ee6c0738c1d
http://dbpedia.org/ontology/Film;;;How many shows are made by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:company <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:company ?a . ?uri a dbo:TelevisionShow };742fc3c32535483d84f660a50956fc0c
http://dbpedia.org/ontology/Broadcaster;;;How many shows are made by the channel whose predecessor was <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:predecessor <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:predecessor ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };2a8fe39c189643d9bc607d285c32bdbf
http://dbpedia.org/ontology/Broadcaster;;;How many shows belong to the network one of whose sister station is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:sisterStation <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:sisterStation ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };7581b52f96f34e7cafd94f2af924760e
http://dbpedia.org/ontology/Broadcaster;;;How many shows belong to the networks one of whose sister station is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:sisterNames <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:sisterNames ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };43d606c2a68b425aa232aff1c3428a37
http://dbpedia.org/ontology/Broadcaster;;;How many shows does <A> have?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:company <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:company ?a . ?uri a dbo:TelevisionShow };1b604c16430a441ebbae9e095b36661e
http://dbpedia.org/ontology/Writer;;;How many shows is <A> known for?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:notableworks ?uri . ?uri a dbo:TelevisionShow };select distinct ?a where { ?a dbp:notableworks ?uri . ?uri a dbo:TelevisionShow };1cf9bbe76b1441ba8ad28dac3a1a50e8
;;;How many sitcoms were produced by the company whose predecessor was the <A>;SELECT DISTINCT COUNT(?uri) where { ?x dbp:predecessor <A> . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:predecessor ?a . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };0692b55140154ca68f9797dda50c0caa
http://dbpedia.org/ontology/Broadcaster;;;How many television shows are broadcasted on <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:channel <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:channel ?a . ?uri a dbo:TelevisionShow };900f0ac67c2d4655b104b6664838d60c
http://dbpedia.org/ontology/Broadcaster;;;How many television shows have <A> as their channel?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:channel <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:channel ?a . ?uri a dbo:TelevisionShow };b55cd5825f3f4a4a9dda3693609c3e4b
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;How many times has <A> been casted?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:starring <A> };select distinct ?a where { ?uri dbo:starring ?a };deb86e66bf6b4246b747867c3fd40564
;;;How many TV show has distributor located in <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:locationCity <A> . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:locationCity ?a . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };700a76b55b6d42619332fe4a076f5180
;;;How many TV shows are of the company which are of company which is a subsidiary of <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:subsidiary <A> . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:subsidiary ?a . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };0ca6c27bc7d045a09658ba31af63d7d0
http://dbpedia.org/ontology/MusicGenre;;;How many TV shows are similar to the ones belonging to <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:genre <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:genre ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };55b536c2b837474d8aa722a73037bd49
http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;;;How many TV shows have been created by <A> ?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:creator <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:creator ?a . ?uri a dbo:TelevisionShow };876df0eecd7c4e78a79daa9a1e7b3343
http://dbpedia.org/ontology/Writer;;;How many TV shows have executive producer as <A> ?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:executiveProducer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:executiveProducer ?a . ?uri a dbo:TelevisionShow };888a270512ce4866be137aa13b94cb0a
;;;How many TV shows' networks are headquarterd in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:headquarters <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:headquarters ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };5536ce539f2548709a11af855d2ca5c5
;;;In how many areas do the networks broadcast, which also broadcasts in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:broadcastArea <A> . ?x dbp:area ?uri . ?uri a dbo:Place };select distinct ?a where { ?x dbo:broadcastArea ?a . ?x dbp:area ?uri . ?uri a dbo:Place };26d0b20b5e3f4b3bb897f363daa6261f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;In what tv shows did <A> act?;SELECT DISTINCT ?uri where { ?uri dbo:starring <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:starring ?a . ?uri a dbo:TelevisionShow };cdc7afa4efc24c619aebfe90b366a6da
http://dbpedia.org/ontology/Broadcaster;;;In which areas is the radio station broadcasted which is a sister station of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:sisterStations ?x . ?x dbp:area ?uri . ?x a dbo:RadioStation };select distinct ?a where { ?a dbp:sisterStations ?x . ?x dbp:area ?uri . ?x a dbo:RadioStation };836e49a87e9346fa8ff7e57ab6d765c1
http://dbpedia.org/ontology/Broadcaster;;;In which broadcast area does the sister station of <A> air ?;SELECT DISTINCT ?uri where { <A> dbo:sisterStation ?x . ?x dbo:broadcastNetwork ?uri };select distinct ?a where { ?a dbo:sisterStation ?x . ?x dbo:broadcastNetwork ?uri };df9dedc7b04241719cdd1de64fab664c
;;;In which cities are there stations of <A>?;SELECT DISTINCT ?uri where { ?x dbo:broadcastNetwork <A> . ?x dbp:city ?uri . ?x a dbo:TelevisionStation };select distinct ?a where { ?x dbo:broadcastNetwork ?a . ?x dbp:city ?uri . ?x a dbo:TelevisionStation };8a63017795e246a49a5be13cbb278cc2
http://dbpedia.org/ontology/TelevisionShow;;;In which city was the film star of <A> born ?;SELECT DISTINCT ?uri where { <A> dbo:starring ?x . ?x dbp:birthPlace ?uri };select distinct ?a where { ?a dbo:starring ?x . ?x dbp:birthPlace ?uri };9a26ec1acb5a49ebb1c6f3430eaf3aec
;;;In which countries can i find broadcasted TV in <A>?;SELECT DISTINCT ?uri where { ?x dbp:broadcastArea <A> . ?x dbp:country ?uri . ?x a dbo:TelevisionStation };select distinct ?a where { ?x dbp:broadcastArea ?a . ?x dbp:country ?uri . ?x a dbo:TelevisionStation };954385119c2440dc9e9ee5c3b6adab5b
http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;in which movies have <A> acted;SELECT DISTINCT ?uri where { ?uri dbp:starring <A> };select distinct ?a where { ?uri dbp:starring ?a };0fd9b98ee3744db6b234eecdfcbe9e70
;;;In which series do I find <A> species' characters?;SELECT DISTINCT ?uri where { ?x dbp:species <A> . ?x dbo:series ?uri . ?x a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:species ?a . ?x dbo:series ?uri . ?x a dbo:FictionalCharacter };909f5544b90d4c97b7f4ae5e5c24b2e7
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;In which series has <A> portrayed someone?;SELECT DISTINCT ?uri where { ?x dbo:portrayer <A> . ?x dbo:series ?uri };select distinct ?a where { ?x dbo:portrayer ?a . ?x dbo:series ?uri };e5230e04554e4a35be04d647faee20bd
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;In which sitcom did <B> acted and had <A> as its network ?;SELECT DISTINCT ?uri where { ?uri dbp:network <A> . ?uri dbo:starring <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:network ?a . ?uri dbo:starring ?b . ?uri a dbo:TelevisionShow };491b0f3480c14c608b26e8e745514b9a
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;In which television shows has <A> given her voice?;SELECT DISTINCT ?uri where { ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };7b86db7dd4c14d2e8d914ef82ac4044e
http://dbpedia.org/ontology/Writer;;;In which television shows have <A> served as an executive producer?;SELECT DISTINCT ?uri where { ?uri dbo:executiveProducer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:executiveProducer ?a . ?uri a dbo:TelevisionShow };93ca4dc34b5e4bf7ba90d0ae55f7d50c
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/WrittenWork;;Is <A> a character of <B>?;ASK where { <B> dbp:characters <A> };select distinct ?a, ?b where { ?b dbp:characters ?a };6e87da5cf6f7420ea41d70b56af0a73a
http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Film;;Is <A> an editor of <B>?;ASK where { <B> dbp:editing <A> };select distinct ?a, ?b where { ?b dbp:editing ?a };d610ad560d0a413083759ecc7b270c9e
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Film;;Is <A> the cinematographer of <B>?;ASK where { <B> dbp:cinematography <A> };select distinct ?a, ?b where { ?b dbp:cinematography ?a };e79c464a0faa4544b7317d38d2bc4f10
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Film;;Is <A> the cinematographer of <B>?;ASK where { <B> dbp:cinematography <A> };select distinct ?a, ?b where { ?b dbp:cinematography ?a };6c551ce5e8ac471295a34da950408fa8
http://dbpedia.org/ontology/Film;;;Is <B> the editor of <A>?;ASK where { <A> dbo:editing <B> };select distinct ?a, ?b where { ?a dbo:editing ?b };5e350b58254d4f07a7a629bb71533ba6
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Is <B> the narrator of <A>?;ASK where { <A> dbo:narrator <B> };select distinct ?a, ?b where { ?a dbo:narrator ?b };2087fc4decb740e28f5e56190e001c68
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;list the producer of the movies in which <A> in the star cast?;SELECT DISTINCT ?uri where { ?x dbp:starring <A> . ?x dbp:producer ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:starring ?a . ?x dbp:producer ?uri . ?x a dbo:Film };fa13e164104b419f82179aeed15b6117
http://dbpedia.org/ontology/Person;;;List all the developers of the <A> series?;SELECT DISTINCT ?uri where { ?x dbo:series <A> . ?x dbo:developer ?uri };select distinct ?a where { ?x dbo:series ?a . ?x dbo:developer ?uri };e60963b2ce1644e5859606046cdd4e4a
http://dbpedia.org/ontology/Broadcaster;;;List all the former broadcast network of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:formerBroadcastNetwork ?uri };select distinct ?a where { ?a dbo:formerBroadcastNetwork ?uri };76fc4d62d2b74c798a3b6b61c4d1ff6f
;;;List all the movies whose directors were born in <A>?;SELECT DISTINCT ?uri where { ?x dbo:birthPlace <A> . ?uri dbp:director ?x };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbp:director ?x };1ceed131fbfd408f8e4aa198f167a4b4
http://dbpedia.org/ontology/TelevisionShow;;;List all the notable work of the screen writer who produced <A> ?;SELECT DISTINCT ?uri where { ?x dbo:notableWork <A> . ?x dbo:notableWork ?uri . ?x a dbo:ScreenWriter };select distinct ?a where { ?x dbo:notableWork ?a . ?x dbo:notableWork ?uri . ?x a dbo:ScreenWriter };a5f1adc3aeab47b59f5a845831b2e343
http://dbpedia.org/ontology/WrittenWork;;;List down all the cast members of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:starring ?uri };select distinct ?a where { ?a dbp:starring ?uri };6dabffad323d44009367b7eaaf220c21
http://dbpedia.org/ontology/Film;;;List down the cinematographers of <A>?;SELECT DISTINCT ?uri where { <A> dbp:cinematography ?uri };select distinct ?a where { ?a dbp:cinematography ?uri };60f077d104bb416caff97689ba8b4506
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Writer;;List down the TV shows whose producer is <A> and writer is <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:producer <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:producer ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };a608e83edd634349b19003da7befc70a
;;;List few <A> movies ?;SELECT DISTINCT ?uri where { ?uri dbp:language <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:language ?a . ?uri a dbo:Film };6deb0bfd163845caab7f56dfb4320204
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/MusicGenre;;List the <B> shows broadcasted on <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:genre <B> . ?uri dbo:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:genre ?b . ?uri dbo:network ?a . ?uri a dbo:TelevisionShow };06865b556f72412591e45e2b25e27d31
http://dbpedia.org/ontology/WrittenWork;;;List the actors of <A>?;SELECT DISTINCT ?uri where { <A> dbp:starring ?uri };select distinct ?a where { ?a dbp:starring ?uri };f3110585cbc94fc69f9f61aeb1c3555f
http://dbpedia.org/ontology/Film;;;List the awards won by the cinematographer of <A>?;SELECT DISTINCT ?uri where { <A> dbp:cinematography ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbp:cinematography ?x . ?x dbo:award ?uri };53bf3aeac4064196845be56ed236a7f7
http://dbpedia.org/ontology/Film;;;List the awards won by the film director of <A>?;SELECT DISTINCT ?uri where { <A> dbp:director ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbp:director ?x . ?x dbo:award ?uri };1d5d1578a88e4fbcb0dcac66ec5eaac5
;;;List the broadcast area of the TV stations which also serves in <A> ?;SELECT DISTINCT ?uri where { ?x dbo:broadcastArea <A> . ?x dbp:broadcastArea ?uri };select distinct ?a where { ?x dbo:broadcastArea ?a . ?x dbp:broadcastArea ?uri };8d253335f3354509a31f7348a91ae3e5
http://dbpedia.org/class/yago/FilmMaker110088390;;;List the cast member of the movies whose producer is <A>.;SELECT DISTINCT ?uri where { ?x dbo:producer <A> . ?x dbo:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbo:producer ?a . ?x dbo:starring ?uri . ?x a dbo:Film };8e4a97eb98a546acb53208b55d2b191a
http://dbpedia.org/ontology/Film|http://dbpedia.org/ontology/WrittenWork;;;List the characters of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:characters ?uri };select distinct ?a where { ?a dbp:characters ?uri };f84586d24de34750a3807a55539f8bf9
http://dbpedia.org/ontology/ComicsCreator;;;List the comic characters created by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:creators <A> . ?uri a dbo:ComicsCharacter };select distinct ?a where { ?uri dbp:creators ?a . ?uri a dbo:ComicsCharacter };e1e158c4b3c5462c9f9254f77b33ebde
;;;List the film starring of the movies whose editor is <A> ?;SELECT DISTINCT ?uri where { ?x dbo:editing <A> . ?x dbp:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbo:editing ?a . ?x dbp:starring ?uri . ?x a dbo:Film };c64b64f2cf244f4dbe7002a393771eb6
http://dbpedia.org/ontology/TelevisionEpisode;;;List the guest of the show <A>?;SELECT DISTINCT ?uri where { <A> dbp:guests ?uri };select distinct ?a where { ?a dbp:guests ?uri };9e935a3e2d31428c87992e9f8bca00bd
http://dbpedia.org/ontology/TelevisionEpisode;;;List the guests of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:guests ?uri };select distinct ?a where { ?a dbp:guests ?uri };9fd4114ea96b48438d0091ba51b47a86
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;;;List the judge of the TV show whose one of the judge is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:judges <A> . ?x dbp:judges ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:judges ?a . ?x dbp:judges ?uri . ?x a dbo:TelevisionShow };84ede2491cf7408fbbb66c5db851f30a
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;List the movies directed by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:director <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:director ?a . ?uri a dbo:Film };ce2de0ff47ec4745a8c1c17dbfe8758b
http://dbpedia.org/class/yago/FilmMaker110088390;;;List the movies produced by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:producer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:producer ?a . ?uri a dbo:Film };ada933daf3c04f8093383e9131a06d2f
http://dbpedia.org/ontology/MusicalArtist;;;List the movies whose cast member were born in <A>.;SELECT DISTINCT ?uri where { ?x dbo:birthPlace <A> . ?uri dbo:starring ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbo:starring ?x . ?uri a dbo:Film };faa44f1aaa984ca3b8508b206a3d0434
;;;List the movies whose editors are born in <A>.;SELECT DISTINCT ?uri where { ?x dbp:placeOfBirth <A> . ?uri dbo:editing ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:placeOfBirth ?a . ?uri dbo:editing ?x . ?uri a dbo:Film };f6f6f72678964b8d94d2af776d9f76bb
http://dbpedia.org/ontology/TelevisionEpisode;;;List the music played in television episode which came after <A> ?;SELECT DISTINCT ?uri where { <A> dbo:subsequentWork ?x . ?x dbp:music ?uri };select distinct ?a where { ?a dbo:subsequentWork ?x . ?x dbp:music ?uri };13aa00a577f340fcbdb046e59b4c6be3
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Film;;List the people casted in <A> and <B>?;SELECT DISTINCT ?uri where { <A> dbo:starring ?uri . <B> dbp:starring ?uri . ?uri a dbo:Person };select distinct ?a, ?b where { ?a dbo:starring ?uri . ?b dbp:starring ?uri . ?uri a dbo:Person };7d51f1bf12ac4424b780213dac02bcb2
http://dbpedia.org/ontology/Film;;;List the people who influenced the comedian who acted in <A> ?;SELECT DISTINCT ?uri where { <A> dbp:starring ?x . ?x dbo:influencedBy ?uri . ?x a dbo:Comedian };select distinct ?a where { ?a dbp:starring ?x . ?x dbo:influencedBy ?uri . ?x a dbo:Comedian };574ba8734196413da81a96d3ec250fcc
;;;List the producer of the television shows distributed by <A>.;SELECT DISTINCT ?uri where { ?x dbp:distributor <A> . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:distributor ?a . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };d9a5d02d87f1498995339381249f32ad
http://dbpedia.org/ontology/Broadcaster;;;List the producer of the TV shows whose company is <A>.;SELECT DISTINCT ?uri where { ?x dbo:company <A> . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbo:company ?a . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };e8ac868bdcc144fdaf15f23486f90d11
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;List the producers who produced movies starring <A>.;SELECT DISTINCT ?uri where { ?x dbp:starring <A> . ?x dbp:producer ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:starring ?a . ?x dbp:producer ?uri . ?x a dbo:Film };2d8b81a320094537aa88cb937f7b7676
http://dbpedia.org/ontology/TelevisionShow;;;List the show related to the which was followed by <A>?;SELECT DISTINCT ?uri where { ?x dbo:subsequentWork <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:subsequentWork ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };09ec259ff20c48b09885b7efccb5acd0
http://dbpedia.org/ontology/Person;;;List the shows whose network is run by <A>.;SELECT DISTINCT ?uri where { ?x dbo:owningCompany <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:owningCompany ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };e0472e2206c9496a9f05207287956509
http://dbpedia.org/ontology/RecordLabel;;;List the starring of the movies whose label is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:label <A> . ?x dbp:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:label ?a . ?x dbp:starring ?uri . ?x a dbo:Film };3d3c7cde66874980a0a5e54a7375ea1f
;;;List the television shows one of whose distributor's divisions is <A>.;SELECT DISTINCT ?uri where { ?x dbp:divisions <A> . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:divisions ?a . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };c23cebef882b4a39806aaf8d5adac8ad
http://dbpedia.org/ontology/Band;;;List the television shows whose Composers are associated with <A> ?;SELECT DISTINCT ?uri where { ?x dbo:associatedBand <A> . ?uri dbp:composer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:associatedBand ?a . ?uri dbp:composer ?x . ?uri a dbo:TelevisionShow };b57a708ebd054204b4816ab7fb3e1c94
;;;List the television shows whose distributors are located at <A>.;SELECT DISTINCT ?uri where { ?x dbp:locationCity <A> . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:locationCity ?a . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };e575b8c0e88a481db2a8c94388a81fdc
http://dbpedia.org/ontology/Person;;;List the television shows whose network's executive officer is <A>.;SELECT DISTINCT ?uri where { ?x dbo:keyPerson <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:keyPerson ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };6437c30f7c71486d9651bdf6c5109725
;;;List the television shows whose network's owning company is <A>?;SELECT DISTINCT ?uri where { ?x dbo:owningCompany <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:owningCompany ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };4aaaa78384af465b8af13b2217f0ef66
http://dbpedia.org/ontology/Broadcaster;;;List the television shows whose network's sister names is <A>.;SELECT DISTINCT ?uri where { ?x dbp:sisterNames <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:sisterNames ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };ec357021bd3041b88bc21430566a7aa5
http://dbpedia.org/ontology/Writer;;;List the total number of executive producer of TV show which have one of the executiive producer as <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:executiveProducer <A> . ?x dbp:executiveProducer ?uri };select distinct ?a where { ?x dbo:executiveProducer ?a . ?x dbp:executiveProducer ?uri };371d70719856441eaf31d0f5046aa071
http://dbpedia.org/ontology/Writer;;;List TV shows with producer as <A> and company is <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:company <B> . ?uri dbo:producer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:company ?b . ?uri dbo:producer ?a . ?uri a dbo:TelevisionShow };af7cd0b6cb6a40969a0ea593539894cc
http://dbpedia.org/ontology/Person;http://dbpedia.org/class/yago/FilmMaker110088390;;Movie's produced by <B> has <A> as director of photography;SELECT DISTINCT ?uri where { ?uri dbo:producer <B> . ?uri dbo:cinematography <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:producer ?b . ?uri dbo:cinematography ?a . ?uri a dbo:Film };4b43dbb1aa6943abab5354ce97147e72
;http://dbpedia.org/ontology/Person;;Name a company with one of the key person as <B> and produces <A>?;SELECT DISTINCT ?uri where { ?uri dbo:keyPerson <B> . ?uri dbp:products <A> . ?uri a dbo:Company };select distinct ?a, ?b where { ?uri dbo:keyPerson ?b . ?uri dbp:products ?a . ?uri a dbo:Company };20b709002c9a451f81ac30e30697d54e
;http://dbpedia.org/ontology/Person;;Name a fictional character whose relative is <B> and species is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:relative <B> . ?uri dbo:species <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbo:relative ?b . ?uri dbo:species ?a . ?uri a dbo:FictionalCharacter };3e991adbec6041f0a8ff29cbff44f27d
http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Person;;Name a movie with actor as <A> and music by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:starring <A> . ?uri dbp:music <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:starring ?a . ?uri dbp:music ?b . ?uri a dbo:Film };253d1d8095684756951584ec0a0a37f1
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;Name a show hosted by <A> and judged by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:presenter <A> . ?uri dbp:judges <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:presenter ?a . ?uri dbp:judges ?b . ?uri a dbo:TelevisionShow };77480fbfae19475b9120f4a4bb9dd835
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name a TV show judged by <B> and presented by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:judges <B> . ?uri dbp:presenter <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:judges ?b . ?uri dbp:presenter ?a . ?uri a dbo:TelevisionShow };be2a715e677a435cabaf67c8f17f8a02
;;;Name all the broadcast area of the TV stations which has <A> as one of the broadcast area ?;SELECT DISTINCT ?uri where { ?x dbp:broadcastArea <A> . ?x dbp:broadcastArea ?uri . ?x a dbo:TelevisionStation };select distinct ?a where { ?x dbp:broadcastArea ?a . ?x dbp:broadcastArea ?uri . ?x a dbo:TelevisionStation };a188179d04e740928d43dc584501c365
;;;Name all the products produced by the producer of <A> ?;SELECT DISTINCT ?uri where { ?x dbo:product <A> . ?x dbo:product ?uri };select distinct ?a where { ?x dbo:product ?a . ?x dbo:product ?uri };04206d63a4654e48a0f4514cbccba82f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;Name few movies directed by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:director <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:director ?a . ?uri a dbo:Film };d3d3ee30a3314e28bcebf4cbac9d53e8
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Name few television shows's anchored by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:presenter <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:presenter ?a . ?uri a dbo:TelevisionShow };e47dfae4d0b64adf925f7961a27179fe
http://dbpedia.org/ontology/Broadcaster;;;Name few TV shows aired by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:network ?a . ?uri a dbo:TelevisionShow };faf138a401bf48698aea3948d57fb21e
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/ComicsCreator;;;Name some comic characters created by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <A> };select distinct ?a where { ?uri dbo:creator ?a };9af1387628eb41aaaa7bfc96527b7dea
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name some TV shows whose theme is made by a band associated with <A>?;SELECT DISTINCT ?uri where { ?x dbo:associatedBand <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:associatedBand ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };6e4a15a53aae46c98668eb591c9d4c6d
http://dbpedia.org/ontology/Broadcaster;;;Name the former broadcast network of the television station which is the sister stations of <A>?;SELECT DISTINCT ?uri where { <A> dbp:sisterStations ?x . ?x dbo:formerBroadcastNetwork ?uri };select distinct ?a where { ?a dbp:sisterStations ?x . ?x dbo:formerBroadcastNetwork ?uri };f8d33f0a3ea5417ca2071226875c8ff9
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Writer;;Name the <A> TV show written by <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:company <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:company ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };1e202ff4ce8c40f18dcb98e39e8c43ad
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Name the <B> TV show judged by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:judges <A> . ?uri dbp:channel <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:judges ?a . ?uri dbp:channel ?b . ?uri a dbo:TelevisionShow };89559a4c09794d45b60a14f288fc5403
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Name the actor of <A> to which <B> is married ?;SELECT DISTINCT ?uri where { <B> dbp:spouse ?uri . <A> dbo:starring ?uri };select distinct ?a, ?b where { ?b dbp:spouse ?uri . ?a dbo:starring ?uri };94ad1de3618a4ae29fd2fa2ac111f8a0
http://dbpedia.org/ontology/TelevisionEpisode;;;Name the actors of the TV show which has an episode named <A> ?;SELECT DISTINCT ?uri where { <A> dbp:series ?x . ?x dbp:starring ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?a dbp:series ?x . ?x dbp:starring ?uri . ?x a dbo:TelevisionShow };aa025dbe97974996bdee7ea712d6fcd2
http://dbpedia.org/ontology/Broadcaster;;;Name the broadcast area of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:area ?uri };select distinct ?a where { ?a dbp:area ?uri };67e7b4cfd56449dd8e16839eb9d8325c
http://dbpedia.org/ontology/Broadcaster;;;Name the broadcast area of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:broadcastArea ?uri };select distinct ?a where { ?a dbp:broadcastArea ?uri };e6e376c1a4f14e9abe7402a8a5f35816
http://dbpedia.org/ontology/Film;;;Name the children of the person who is the star of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:starring ?x . ?x dbp:children ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbo:starring ?x . ?x dbp:children ?uri . ?x a dbo:Person };407e2cde683b484b86e7ee73d945f1fe
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Film;;Name the common editor of <B> and <A>?;SELECT DISTINCT ?uri where { <B> dbo:editing ?uri . <A> dbo:editing ?uri };select distinct ?a, ?b where { ?b dbo:editing ?uri . ?a dbo:editing ?uri };4fc2bcb888944f50969d6131075914e7
http://dbpedia.org/ontology/MusicalWork;;;Name the directors of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:director ?uri };select distinct ?a where { ?a dbo:director ?uri };6689a88cf3af48998efaa96b5466f7cb
;;;Name the fictional character whose relative are <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbo:relative <B> . ?uri dbp:relatives <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbo:relative ?b . ?uri dbp:relatives ?a . ?uri a dbo:FictionalCharacter };6f8d3265d2f34fe2823b67ae38748882
http://dbpedia.org/ontology/Person;;;Name the fictional character whose relatives are <A> and belongs to <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:relatives <A> . ?uri dbo:relative <B> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:relatives ?a . ?uri dbo:relative ?b . ?uri a dbo:FictionalCharacter };65cb514fcc3148d6ba887e1d9e2d494f
http://dbpedia.org/ontology/Person;;;Name the fictional character whose relatives are <A> and is of species <B>?;SELECT DISTINCT ?uri where { ?uri dbp:relatives <A> . ?uri dbo:species <B> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:relatives ?a . ?uri dbo:species ?b . ?uri a dbo:FictionalCharacter };15578900e719497ea0e89f95818a753a
;http://dbpedia.org/ontology/Person;;Name the fictional character whose species is <A> and has relatives named <B>?;SELECT DISTINCT ?uri where { ?uri dbo:species <A> . ?uri dbp:relatives <B> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbo:species ?a . ?uri dbp:relatives ?b . ?uri a dbo:FictionalCharacter };76f197d00d1d4cf695613aa5f7089c3f
http://dbpedia.org/ontology/Person;;;Name the fictional character whose voice's animator is <A>?;SELECT DISTINCT ?uri where { ?x dbp:animator <A> . ?uri dbo:voice ?x . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:animator ?a . ?uri dbo:voice ?x . ?uri a dbo:FictionalCharacter };dcb720202a9b4b1bac3951450a734b3a
;;;Name the licensee of the TV station whose one of the licensee is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:licensee <A> . ?x dbp:licensee ?uri . ?x a dbo:TelevisionStation };select distinct ?a where { ?x dbp:licensee ?a . ?x dbp:licensee ?uri . ?x a dbo:TelevisionStation };5ad1ae78dccc48cf8191cdc793ed60b5
http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the movie who has screenplay by <B> and is edited by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:screenplay <B> . ?uri dbp:editing <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:screenplay ?b . ?uri dbp:editing ?a . ?uri a dbo:Film };f468633c3d9d42d6b5460e08fd7527ed
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;Name the movie whose director is <A> and editor is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:editing <B> . ?uri dbo:director <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:editing ?b . ?uri dbo:director ?a . ?uri a dbo:Film };588648d7ead24862a8392d2cb6b7499f
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/FilmMaker110088390;;Name the movie whose producer is <B> and music is given by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:producer <B> . ?uri dbp:music <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:producer ?b . ?uri dbp:music ?a . ?uri a dbo:Film };0ac9e7c038dd486a87c27b58e9c6a6e4
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the movie whose screenplay is by <B> and directed by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:screenplay <B> . ?uri dbo:director <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:screenplay ?b . ?uri dbo:director ?a . ?uri a dbo:Film };238c66a5b9f240c4810f764cc8ec134b
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;;;Name the movie written by <A> and distributed by <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <B> . ?uri dbp:writer <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:distributor ?b . ?uri dbp:writer ?a . ?uri a dbo:Film };22420b9ce00545229aecd57813393a38
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;Name the movies directed by <A> and edited by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:director <A> . ?uri dbp:editing <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:director ?a . ?uri dbp:editing ?b . ?uri a dbo:Film };e6e8ea74524445e38326aadc3d4a8c33
;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the movies distributed by <A> and directed by <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <A> . ?uri dbp:director <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:distributor ?a . ?uri dbp:director ?b . ?uri a dbo:Film };57e62ad01fb74f208589fefbb58693e3
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;Name the movies distributed by <B> and edited by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <B> . ?uri dbp:editing <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:distributor ?b . ?uri dbp:editing ?a . ?uri a dbo:Film };9a8d8cab24774d4eb9fe49d063f80906
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;;;Name the movies writtten by the group <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:writer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:writer ?a . ?uri a dbo:Film };ce5ddceafe844a9bb7a76194c0af8c7f
http://dbpedia.org/ontology/Writer;;;Name the notable work by <A> which is also the series of <B> ?;SELECT DISTINCT ?uri where { <A> dbp:notableworks ?uri . <B> dbo:series ?uri };select distinct ?a, ?b where { ?a dbp:notableworks ?uri . ?b dbo:series ?uri };075580e801b242728cc06ad403056096
http://dbpedia.org/ontology/TelevisionShow;;;Name the presenter of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:presenter ?uri };select distinct ?a where { ?a dbp:presenter ?uri };1c12f743208140c4899ab63ce958d5c4
;;;Name the series of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:series ?uri };select distinct ?a where { ?a dbo:series ?uri };93c37c563c8b4f0f9b070340f1fa1630
http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Broadcaster;;Name the show formed by <A> and had network as <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:developer <A> . ?uri dbp:network <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:developer ?a . ?uri dbp:network ?b . ?uri a dbo:TelevisionShow };03dc94e9c928474f91e0414b14f9e1e4
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the show whose jury consist of <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbp:judges <B> . ?uri dbp:judges <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:judges ?b . ?uri dbp:judges ?a . ?uri a dbo:TelevisionShow };d23c4c43e4f1484b99c8054143bf2438
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name the show whose theme composing band previously also had <A>?;SELECT DISTINCT ?uri where { ?x dbo:formerBandMember <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:formerBandMember ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };c8e8897629e34648b1aeb77826873038
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name the shows whose theme was composed by a band in which <A> used to be?;SELECT DISTINCT ?uri where { ?x dbo:formerBandMember <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:formerBandMember ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };379c894ed50943efa6daca5de2dba735
;;;Name the sitcoms whose network's owning company is <A>?;SELECT DISTINCT ?uri where { ?x dbo:owningCompany <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:owningCompany ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };e9433939da964198814e9dcd3e3cdc47
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Name the television program voiced by <A> and aired on <B>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <A> . ?uri dbp:network <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?a . ?uri dbp:network ?b . ?uri a dbo:TelevisionShow };6c1c0ca2a98141f3a9687634493adc68
http://dbpedia.org/ontology/Person;;;Name the television show created by <A> and also has actor named <B>?;SELECT DISTINCT ?uri where { ?uri dbo:starring <B> . ?uri dbo:creator <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:starring ?b . ?uri dbo:creator ?a . ?uri a dbo:TelevisionShow };297480b7b3fd43e7819b9eb234501795
http://dbpedia.org/class/yago/FilmMaker110088390;;;Name the television show developed by <A> and distributed by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:developer <A> . ?uri dbp:distributor <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:developer ?a . ?uri dbp:distributor ?b . ?uri a dbo:TelevisionShow };56262987cc8244aa8df969f4fb5a322e
http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the television show directed by <A> and judged by <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:creator <A> . ?uri dbp:judges <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:creator ?a . ?uri dbp:judges ?b . ?uri a dbo:TelevisionShow };840cc802cdf04e8eac6a2f572777b0fa
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Name the television show distributed by <B> and voiced by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:distributor ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };f296e394f71346d8835fe88f4e572782
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Name the television show voiced by <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };fecf2980af9448768aa17425d8c48dec
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Broadcaster;;Name the television show where <A> has given voice and is distributed by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <A> . ?uri dbp:distributor <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?a . ?uri dbp:distributor ?b . ?uri a dbo:TelevisionShow };7529473b5740452abc142ddb60132ef3
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Broadcaster;;Name the television show which was developed by <A> and distributed by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:developer <A> . ?uri dbp:distributor <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:developer ?a . ?uri dbp:distributor ?b . ?uri a dbo:TelevisionShow };38c76f79fd67475680c99f38f3808b86
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Film;;Name the television show whose company is <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:company <A> . ?uri dbp:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:company ?a . ?uri dbp:company ?b . ?uri a dbo:TelevisionShow };6a5d40f8a52947ff8f4c0f896df790b9
http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Name the television show whose creator is <A> and presented by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:creator <A> . ?uri dbo:presenter <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:creator ?a . ?uri dbo:presenter ?b . ?uri a dbo:TelevisionShow };2430cb5fcc7e4de09250aa3d4cf84c00
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Name the television show whose distributor is <B> and the character voice is given by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:distributor ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };7bbd4a94e58e4bd2b5c13beb56280925
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Broadcaster;;Name the television show whose network is <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbp:network <B> . ?uri dbo:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:network ?b . ?uri dbo:network ?a . ?uri a dbo:TelevisionShow };af7ff586aa3e46058865543dba5c96b0
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/TelevisionShow;;Name the television show whose subsequent work is <B> and Composer is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:subsequentWork <B> . ?uri dbp:composer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:subsequentWork ?b . ?uri dbp:composer ?a . ?uri a dbo:TelevisionShow };38373a19e5964230aaa2329c041ad1e3
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/TelevisionShow;;Name the television show whose subsequent work is <B> and opening theme is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:subsequentWork <B> . ?uri dbo:openingTheme <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:subsequentWork ?b . ?uri dbo:openingTheme ?a . ?uri a dbo:TelevisionShow };a91c0aba4eef49c387ca0f4df2ce1ae2
;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Name the television show whose voice is given by <B> and it's distributor is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <B> . ?uri dbo:distributor <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?b . ?uri dbo:distributor ?a . ?uri a dbo:TelevisionShow };b999081fee064aae850db1e1963425c1
;http://dbpedia.org/class/yago/Entertainer109616922;;Name the television show with opening theme as <A> and is composed by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <A> . ?uri dbp:themeMusicComposer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:openingTheme ?a . ?uri dbp:themeMusicComposer ?b . ?uri a dbo:TelevisionShow };d17b83f85f7c433e9f2c91eab0577727
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Writer;;Name the tv series produced by <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:producer <A> . ?uri dbo:producer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:producer ?a . ?uri dbo:producer ?b . ?uri a dbo:TelevisionShow };605675f72f0449d6a0b72908f4546a13
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Name the TV show broadcasted by <A> and presented by <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:presenter <B> . ?uri dbo:channel <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:presenter ?b . ?uri dbo:channel ?a . ?uri a dbo:TelevisionShow };679e1082fff84c878024ee1d62389f0b
http://dbpedia.org/ontology/Broadcaster;;;Name the TV show distributed by <B> and is broadcasted by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <B> . ?uri dbp:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:distributor ?b . ?uri dbp:network ?a . ?uri a dbo:TelevisionShow };ff2c4d6fe5ce44f99d580e8a58235a3f
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the TV show which has judge as <B> is broadcasted on <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:channel <A> . ?uri dbp:judges <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:channel ?a . ?uri dbp:judges ?b . ?uri a dbo:TelevisionShow };82c928cbd1774387a68f7fb4dd3e62ec
http://dbpedia.org/ontology/TelevisionShow;;;Name the TV show whose cast member is <B> and is related to <A>?;SELECT DISTINCT ?uri where { ?uri dbo:starring <B> . ?uri dbo:related <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:starring ?b . ?uri dbo:related ?a . ?uri a dbo:TelevisionShow };bf76f57f7884400e8f11ba71e1d0787b
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Film;;Name the TV show whose company is <A> and written by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:company <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:company ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };bb91e0c70abe4131a829b7d72b517d80
;;;Name the TV show whose composer is <A> and company as <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:composer <A> . ?uri dbp:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:composer ?a . ?uri dbp:company ?b . ?uri a dbo:TelevisionShow };584cc0fdb95040f19cc8ee83fa1c62bb
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/Broadcaster;;Name the TV show whose network is <B> and is the subsequent work of <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:network <B> . ?uri dbo:subsequentWork <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:network ?b . ?uri dbo:subsequentWork ?a . ?uri a dbo:TelevisionShow };ace6e364c8cc4f1fb0813dc404b6fae6
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/TelevisionShow;;Name the TV show whose opening theme is <A> and the subsequent work is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <A> . ?uri dbo:subsequentWork <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:openingTheme ?a . ?uri dbo:subsequentWork ?b . ?uri a dbo:TelevisionShow };652f41e8f5324124af1f9e41d9127e5d
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Broadcaster;;Name the TV show whose producer is <A> and company is <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:producer <A> . ?uri dbo:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:producer ?a . ?uri dbo:company ?b . ?uri a dbo:TelevisionShow };5be47b8830304a13bc505638e513ee8e
http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Name the TV show with <A> as artist and <B> as the channel ?;SELECT DISTINCT ?uri where { ?uri dbp:creator <A> . ?uri dbp:channel <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:creator ?a . ?uri dbp:channel ?b . ?uri a dbo:TelevisionShow };0f40e662368f43ac9aaa550638105eee
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Name the TV show with artist <B> and cast member <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:artist <B> . ?uri dbo:starring <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:artist ?b . ?uri dbo:starring ?a . ?uri a dbo:TelevisionShow };48ed9662c9d34e7bb7ff13ec8d02c81f
http://dbpedia.org/ontology/Band;;;Name the TV show with distributor as <B> and has theme music composed by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <B> . ?uri dbp:themeMusicComposer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:distributor ?b . ?uri dbp:themeMusicComposer ?a . ?uri a dbo:TelevisionShow };c300cea324644ae39031003ca3d6aa2d
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the tv show with judges <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbp:judges <A> . ?uri dbp:judges <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:judges ?a . ?uri dbp:judges ?b . ?uri a dbo:TelevisionShow };218fb3f1f7bf4d3599daaf5a95885fbe
http://dbpedia.org/ontology/Band;http://dbpedia.org/ontology/Broadcaster;;Name the TV show with theme music by <A> and broadcasted on <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:network <B> . ?uri dbp:themeMusicComposer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:network ?b . ?uri dbp:themeMusicComposer ?a . ?uri a dbo:TelevisionShow };e7cb1c037fd84b45a5a0b5e4de0f3ef2
http://dbpedia.org/ontology/Broadcaster;;;Name the TV shows owned by divisions of <A>?;SELECT DISTINCT ?uri where { ?x dbp:parent <A> . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:parent ?a . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };d8a37738293349dca33bdc20e691151e
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Film|http://dbpedia.org/ontology/TelevisionShow;;Name the TV shows related to <B> and is aired on <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:related <B> . ?uri dbo:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:related ?b . ?uri dbo:network ?a . ?uri a dbo:TelevisionShow };eee8cd2ce7864cc18d521259b6385d55
http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Person;;Name the TV shows whose developer is <A> and executive producer is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:developer <A> . ?uri dbo:executiveProducer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:developer ?a . ?uri dbo:executiveProducer ?b . ?uri a dbo:TelevisionShow };fe352180bf17436ba61fb0416e17d291
;http://dbpedia.org/ontology/Broadcaster;;Name the TV shows with network as <B> and company as <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:network <B> . ?uri dbp:company <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:network ?b . ?uri dbp:company ?a . ?uri a dbo:TelevisionShow };7c500d33868d4336a446b69df7d357c0
http://dbpedia.org/ontology/TelevisionShow;;;Over how many cities did the <A>, Season 11 take place?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:city ?uri };select distinct ?a where { ?a dbp:city ?uri };3e719418e0ae4a06bc1819295c66394e
http://dbpedia.org/ontology/Person;;;Some movies whose screenplay is done by <A> born people?;SELECT DISTINCT ?uri where { ?x dbo:birthPlace <A> . ?uri dbp:screenplay ?x };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbp:screenplay ?x };b9b27ecb9a874649a57739e1ec0b5ab4
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;Through which label did <A> produce his movie?;SELECT DISTINCT ?uri where { ?x dbp:producer <A> . ?x dbp:label ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:producer ?a . ?x dbp:label ?uri . ?x a dbo:Film };b41762bf722a4fa7a80d93b0759d28c6
http://dbpedia.org/ontology/WrittenWork;;;To which series <A> belong to ?;SELECT DISTINCT ?uri where { <A> dbp:series ?uri };select distinct ?a where { ?a dbp:series ?uri };936e49d38fb344b8a243aafc31b75630
http://dbpedia.org/ontology/Person;;;To which series does the character of <A> belong?;SELECT DISTINCT ?uri where { <A> dbo:series ?uri };select distinct ?a where { ?a dbo:series ?uri };8c42485e42e641b297c1b7b9bc431f71
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Person;;Was <A> cinematographed by <B>Cronenweth?;ASK where { <A> dbo:cinematography <B> };select distinct ?a, ?b where { ?a dbo:cinematography ?b };4b3b5256bbe842d685027d2c18454d38
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;Was <A> edited by <B>?;ASK where { <A> dbo:editing <B> };select distinct ?a, ?b where { ?a dbo:editing ?b };ccd7bfe91df242cba413e7b850bdff5e
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Editor110044879;;Was <A> edited by <B>?;ASK where { <A> dbo:editing <B> };select distinct ?a, ?b where { ?a dbo:editing ?b };959ab2e634754cfaa81e52b342c5d1c8
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;Was <A> edited by <B>?;ASK where { <A> dbo:editing <B> };select distinct ?a, ?b where { ?a dbo:editing ?b };2d35b5fc3d04477aad9ca12f1abfdc9c
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Film;;Was <A> the director of the <B>?;ASK where { <B> dbo:cinematography <A> };select distinct ?a, ?b where { ?b dbo:cinematography ?a };2ca6b83130654efb9992783432c6e211
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Writer;;Was <B> a character of <A>?;ASK where { <A> dbp:characters <B> };select distinct ?a, ?b where { ?a dbp:characters ?b };da7765ddd30747a8a4f9e56b2c133576
http://dbpedia.org/ontology/TelevisionEpisode;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Was <B> a guest on <A>?;ASK where { <A> dbp:guests <B> };select distinct ?a, ?b where { ?a dbp:guests ?b };ba52d02c389e44feaf5d0a833e155c0e
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Film;;Was <B> cinematographed by <A>?;ASK where { <B> dbp:cinematography <A> };select distinct ?a, ?b where { ?b dbp:cinematography ?a };fd11cddf34d54d3c87f3d536773a9c09
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Was <B> the cinematographer of <A>?;ASK where { <A> dbp:cinematography <B> };select distinct ?a, ?b where { ?a dbp:cinematography ?b };f1eae8d8caba4bae88873a154dfec671
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Person;;Was <B> the cinematographer of <A>?;ASK where { <A> dbo:cinematography <B> };select distinct ?a, ?b where { ?a dbo:cinematography ?b };efcc04cf1e59487e9a5018d7fd3412e0
http://dbpedia.org/ontology/Film;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;;Was the <A> narrated by <B>?;ASK where { <A> dbp:narrator <B> };select distinct ?a, ?b where { ?a dbp:narrator ?b };4f51e2f2604c49609c5b28c6d129bf7d
http://dbpedia.org/ontology/Film;;;What awards did the cast members of <A> win?;SELECT DISTINCT ?uri where { <A> dbo:starring ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbo:starring ?x . ?x dbp:awards ?uri };a8d5e073c778486bb2d6db640cf49768
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Person;;What <A> directed movie has photography director as <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:cinematography <B> . ?uri dbp:director <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:cinematography ?b . ?uri dbp:director ?a . ?uri a dbo:Film };bf9af6758f024671b29e7786a3bd5039
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Film;;What actor of <B> of <A>?;SELECT DISTINCT ?uri where { <B> dbp:starring ?uri . <A> dbo:relation ?uri };select distinct ?a, ?b where { ?b dbp:starring ?uri . ?a dbo:relation ?uri };649d452e63834157a29c6a1db0e777fa
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Film;;What actor starred in <B> and is married to <A>?;SELECT DISTINCT ?uri where { <B> dbp:starring ?uri . <A> dbp:spouse ?uri };select distinct ?a, ?b where { ?b dbp:starring ?uri . ?a dbp:spouse ?uri };be6257ece9e546bc821b110aed45c1b1
http://dbpedia.org/ontology/Person;;;What are all the TV shows which are related to the ones produced by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:executiveProducer <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:executiveProducer ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };7e6d0482a40245e6bf7602e2ad0d65ed
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;What are some characters of series produced by <A>?;SELECT DISTINCT ?uri where { ?x dbo:executiveProducer <A> . ?uri dbo:series ?x };select distinct ?a where { ?x dbo:executiveProducer ?a . ?uri dbo:series ?x };00d182c2fc044872afb893ada8c680ed
http://dbpedia.org/ontology/Film;;;What are some fictional characters whose voice is in <A>?;SELECT DISTINCT ?uri where { ?uri dbo:voice <A> };select distinct ?a where { ?uri dbo:voice ?a };6b6b25414e6d41a79396ddd1c583fe07
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;What are some movies whose distributer's CEO is <A>?;SELECT DISTINCT ?uri where { ?x dbp:keyPeople <A> . ?uri dbp:distributor ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:keyPeople ?a . ?uri dbp:distributor ?x . ?uri a dbo:Film };990acb5fafe142619ee7ad93a614fcf9
http://dbpedia.org/ontology/Person;;;What are some movies whose distributors are led by <A>?;SELECT DISTINCT ?uri where { ?x dbo:keyPerson <A> . ?uri dbp:distributor ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:keyPerson ?a . ?uri dbp:distributor ?x . ?uri a dbo:Film };5dd25945300c4882b7f41d51f864edbf
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;What are some movies whose score is composed by relatives of <A>?;SELECT DISTINCT ?uri where { ?x dbp:relatives <A> . ?uri dbp:music ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:relatives ?a . ?uri dbp:music ?x . ?uri a dbo:Film };e0e0942378134df3b26ed071efe372b3
;;;What are some movies written by British <A>?;SELECT DISTINCT ?uri where { ?x dbo:nationality <A> . ?uri dbo:writer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:nationality ?a . ?uri dbo:writer ?x . ?uri a dbo:Film };709cd39da1d043b3bd5f9c07c32b7664
http://dbpedia.org/ontology/TelevisionShow;;;What are some other great things by the person who produced <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbo:producer ?x . ?x dbp:notableworks ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbo:producer ?x . ?x dbp:notableworks ?uri . ?x a dbo:Person };96c4bef12a134fb8bb1ac835d064c51a
http://dbpedia.org/ontology/Broadcaster;;;What are some shows by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:network ?a . ?uri a dbo:TelevisionShow };e7fab35dd5cf469895cae4ef222fbcd7
;;;What are some shows whose voice actors play the <A>?;SELECT DISTINCT ?uri where { ?x dbo:instrument <A> . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:instrument ?a . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };829939d409714b7b9fb93dfd57ceccc9
http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;;;What are some tv shows created by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:creator <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:creator ?a . ?uri a dbo:TelevisionShow };ce328b878c624b718d5f92fe48d01626
http://dbpedia.org/ontology/Person;;;What are some TV shows similar to the one produced by <A>?;SELECT DISTINCT ?uri where { ?x dbp:producer <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:producer ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };8b2570a474e64d91bdf32a893692ac55
;;;What are some TV shows whose voice actors are from <A>, US?;SELECT DISTINCT ?uri where { ?x dbp:birthPlace <A> . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:birthPlace ?a . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };3722e91c57c84a39bac14bfe89532583
http://dbpedia.org/ontology/Film|http://dbpedia.org/ontology/TelevisionShow;;;What are the awards won by the film director of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:director ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbo:director ?x . ?x dbp:awards ?uri };973615440e0f471487e7bb99d0e2084c
http://dbpedia.org/ontology/Film;;;What are the awards won by the film editor of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:editing ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:editing ?x . ?x dbo:award ?uri };c7127b97150141d8843721bc8b9fdc6f
http://dbpedia.org/ontology/Film;;;What are the awards won by the film editor of <A>?;SELECT DISTINCT ?uri where { <A> dbo:editing ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbo:editing ?x . ?x dbp:awards ?uri };64e38f50da46457e8bb6a34f4d6cb76f
http://dbpedia.org/ontology/MusicalWork;;;What are the awards won by the producer of <A>;SELECT DISTINCT ?uri where { <A> dbp:producer ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbp:producer ?x . ?x dbp:awards ?uri };339f9ccfb682456ab0f1e7f580a2d27e
http://dbpedia.org/ontology/Film;;;What are the awards won by the producer of <A> (film)?;SELECT DISTINCT ?uri where { <A> dbo:producer ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:producer ?x . ?x dbo:award ?uri };0f04c3c74476410791c8a43465ba6918
http://dbpedia.org/ontology/Film;;;What are the birth place of the people who are the star of <A>?;SELECT DISTINCT ?uri where { <A> dbo:starring ?x . ?x dbo:birthPlace ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbo:starring ?x . ?x dbo:birthPlace ?uri . ?x a dbo:Person };bac4ecaac8954b3d83266bf1363bd5c8
http://dbpedia.org/ontology/Broadcaster;;;What are the broadcast areas of <A>?;SELECT DISTINCT ?uri where { <A> dbp:broadcastArea ?uri };select distinct ?a where { ?a dbp:broadcastArea ?uri };ca66ad5b2f544c31a6254b0ba2808274
http://dbpedia.org/ontology/Film;;;What are the central characters in <A> series?;SELECT DISTINCT ?uri where { ?uri dbo:series <A> };select distinct ?a where { ?uri dbo:series ?a };94e0f81983644e299c03baa26e68409f
;;;What are the films whose atleast one cast member died due to <A>?;SELECT DISTINCT ?uri where { ?x dbo:deathCause <A> . ?uri dbp:starring ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:deathCause ?a . ?uri dbp:starring ?x . ?uri a dbo:Film };14beb01d38c546a58565e06c61c1f773
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;What are the movies directed by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:director <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:director ?a . ?uri a dbo:Film };8c563a445be548dcbe86117be621f124
http://dbpedia.org/class/yago/FilmMaker110088390;;;What are the movies produced by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:producer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:producer ?a . ?uri a dbo:Film };13935f6f7c0546b48d83d2817eeb3a84
;;;What are the movies whose cast members are signed up with <A>?;SELECT DISTINCT ?uri where { ?x dbp:label <A> . ?uri dbp:starring ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:label ?a . ?uri dbp:starring ?x . ?uri a dbo:Film };8771e72d14ca4063839d6058b825dcde
http://dbpedia.org/ontology/Person;;;What are the movies whose cinematographer is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:cinematography <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:cinematography ?a . ?uri a dbo:Film };c782fe8362e4411692072d564ba4fedb
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;What are the movies whose director is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:director <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:director ?a . ?uri a dbo:Film };83f39c859fbc4eeaa715eb2c8e319759
http://dbpedia.org/ontology/Person;;;What are the movies whose director of photography is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:cinematography <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:cinematography ?a . ?uri a dbo:Film };eb7991936f3c4df097078005049ad9ba
http://dbpedia.org/ontology/Film;;;What are the movies whose director's daughter is <A>?;SELECT DISTINCT ?uri where { ?x dbo:child <A> . ?uri dbp:director ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:child ?a . ?uri dbp:director ?x . ?uri a dbo:Film };1941e1a9b0c24c018927477c05b1e5cc
;;;What are the movies whose distributor's headquarters is <A>?;SELECT DISTINCT ?uri where { ?x dbp:headquarters <A> . ?uri dbp:distributor ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:headquarters ?a . ?uri dbp:distributor ?x . ?uri a dbo:Film };d8d554549f9949d5833e62ee180939b7
;;;What are the movies whose editor died in <A>?;SELECT DISTINCT ?uri where { ?x dbo:deathPlace <A> . ?uri dbo:editing ?x };select distinct ?a where { ?x dbo:deathPlace ?a . ?uri dbo:editing ?x };35bf7919ccd9471fb67f5bd38ff7fbc7
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;;What are the movies whose editor is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:editing <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:editing ?a . ?uri a dbo:Film };f4dfd8294d264888896ddcc6e971ef4b
http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;;What are the movies whose screenplay is done by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:screenplay <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:screenplay ?a . ?uri a dbo:Film };8575d9a3b2064c21985eeeeb57e60eb4
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;What are the movies with <A> as screenwriter?;SELECT DISTINCT ?uri where { ?uri dbp:screenplay <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:screenplay ?a . ?uri a dbo:Film };782f901d32c14d0bb32eb413e439eb02
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;What are the movies written by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:writer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:writer ?a . ?uri a dbo:Film };b313e3a99d844bfca33d9b8c30f75a34
http://dbpedia.org/ontology/Person;;;What are the nicknames given to the characters of <A>?;SELECT DISTINCT ?uri where { <A> dbp:nickname ?uri };select distinct ?a where { ?a dbp:nickname ?uri };f3a26b9c5fb84504821433f49a62d31c
http://dbpedia.org/ontology/TelevisionShow;;;What are the notable works of the person who produced <A>?;SELECT DISTINCT ?uri where { <A> dbo:producer ?x . ?x dbp:notableworks ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbo:producer ?x . ?x dbp:notableworks ?uri . ?x a dbo:Person };05c054d50e42453aaea8ea3da8ce6afa
http://dbpedia.org/ontology/TelevisionEpisode;;;What are the other notable work of the executive producer of <A>?;SELECT DISTINCT ?uri where { <A> dbo:executiveProducer ?x . ?x dbp:notableworks ?uri };select distinct ?a where { ?a dbo:executiveProducer ?x . ?x dbp:notableworks ?uri };13b91edef6f247998a11991c20d82c12
;;;What are the prizes won by the animator of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:animator ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:animator ?x . ?x dbo:award ?uri };216cc8eb3adc4058b3dae6dc542bc2cc
http://dbpedia.org/ontology/Person;;;What are the shows whose creator has worked as a <A>?;SELECT DISTINCT ?uri where { ?x dbo:occupation <A> . ?uri dbo:creator ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:occupation ?a . ?uri dbo:creator ?x . ?uri a dbo:TelevisionShow };3d48aaabb0914e66b31f1f131e6694fa
;;;What are the television shows of a company headquartered in <A>?;SELECT DISTINCT ?uri where { ?x dbp:headquarters <A> . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:headquarters ?a . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };a8ff069915554ce8b52b95787f1e84ce
;;;What are the television shows telecasted on the network which has headquarters at <A>?;SELECT DISTINCT ?uri where { ?x dbp:headquarters <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:headquarters ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };64452a48e109452f8d7c44e99d505ae8
;;;What are the television shows which are in <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbo:format <B> . ?uri dbo:format <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:format ?b . ?uri dbo:format ?a . ?uri a dbo:TelevisionShow };72c7e0fedd6143eb940bc3debcdec811
;;;What are the television shows whose company is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:company <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:company ?a . ?uri a dbo:TelevisionShow };026eb82f924542c5be524f0aee58ff2f
http://dbpedia.org/ontology/Film;;;What are the television shows whose company is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:company <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:company ?a . ?uri a dbo:TelevisionShow };7f4f1679c83148c4839f6434ed4e3ac3
;;;What are the television shows whose company is owned by <A>;SELECT DISTINCT ?uri where { ?x dbo:owningCompany <A> . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:owningCompany ?a . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };bfb53a96bd9c48b28e143f608fb4f1f9
;;;What are the television shows whose company's predecessor is <A>?;SELECT DISTINCT ?uri where { ?x dbp:predecessor <A> . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:predecessor ?a . ?uri dbp:company ?x . ?uri a dbo:TelevisionShow };deea1a7029184a36887d5130ae3b7420
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;What are the television shows whose Composer is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:composer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:composer ?a . ?uri a dbo:TelevisionShow };ccfbcef8a6b643ca81124ab5f600bcdd
http://dbpedia.org/ontology/Broadcaster;;;What are the television shows whose distributer is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:distributor ?a . ?uri a dbo:TelevisionShow };f5e9009261864d4a998a4815dabb3404
;;;What are the television shows whose distributor is a division of <A>?;SELECT DISTINCT ?uri where { ?x dbp:divisions <A> . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:divisions ?a . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };e679996aa101404d8a234c41e60c57ae
http://dbpedia.org/ontology/Broadcaster;;;What are the television shows whose network is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:network ?a . ?uri a dbo:TelevisionShow };1d3e8d528a354735aa5fdffc086c9530
http://dbpedia.org/ontology/Broadcaster;;;What are the television shows whose network is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:network ?a . ?uri a dbo:TelevisionShow };2d0b48018f494c26a18b0026fdf92feb
http://dbpedia.org/ontology/Broadcaster;;;What are the television shows whose network's sister station is <A>?;SELECT DISTINCT ?uri where { ?x dbo:sisterStation <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:sisterStation ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };0b60b66059d842f79d0b4d9825973e79
;;;What are the television shows whose network's stockholder is <A>?;SELECT DISTINCT ?uri where { ?x dbp:owner <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:owner ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };6d88e417c33d49cd85eaa5b9dc7b1174
http://dbpedia.org/ontology/Broadcaster;;;What are the television shows whose network's successor is <A>?;SELECT DISTINCT ?uri where { ?x dbo:successor <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:successor ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };f9e9a9d4684b4c4cbc193ca30cb7b7b6
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;What are the television shows whose voices is given by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };715cd1e1ff8d43868e231fe93c6699c9
http://dbpedia.org/ontology/TelevisionShow;;;What are the television shows whose writers did notable work for <A> ?;SELECT DISTINCT ?uri where { ?x dbo:notableWork <A> . ?uri dbp:writer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:notableWork ?a . ?uri dbp:writer ?x . ?uri a dbo:TelevisionShow };52db9e57f2664971af4d8b9d4dd8b49f
http://dbpedia.org/ontology/Person;;;What are the things whose director of photography died in <A>?;SELECT DISTINCT ?uri where { ?x dbp:deathPlace <A> . ?uri dbp:cinematography ?x };select distinct ?a where { ?x dbp:deathPlace ?a . ?uri dbp:cinematography ?x };f5133efadcbd4156acea7c0709acf981
http://dbpedia.org/ontology/Broadcaster;;;What are the TV shows whose network is also known as <A>?;SELECT DISTINCT ?uri where { ?x dbp:sisterNames <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:sisterNames ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };a6de49d9743f440db28ce26337d15730
http://dbpedia.org/ontology/TelevisionShow;;;What award was won by executive producer of <A>?;SELECT DISTINCT ?uri where { <A> dbo:executiveProducer ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:executiveProducer ?x . ?x dbo:award ?uri };5d0e2659e4b0492fb4530be48fa720db
http://dbpedia.org/ontology/Film;;;What awards are won by the screenwriter of <A>?;SELECT DISTINCT ?uri where { <A> dbp:screenplay ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbp:screenplay ?x . ?x dbo:award ?uri };625ae94833b045a0a4baa5ce95d97900
http://dbpedia.org/ontology/Film;;;What awards did the film director of <A> win ?;SELECT DISTINCT ?uri where { <A> dbo:director ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:director ?x . ?x dbo:award ?uri };4aa80af1497f49ecbcd3bd93990e9df9
http://dbpedia.org/ontology/TelevisionShow;;;What awards have been won by the executive producer of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:executiveProducer ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:executiveProducer ?x . ?x dbo:award ?uri };357edf2393e94d8c9218db99a838a080
http://dbpedia.org/ontology/Film;;;What awards were given to the producer of <A>?;SELECT DISTINCT ?uri where { <A> dbo:producer ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:producer ?x . ?x dbo:award ?uri };d966774a4f744b009b17755dbd061e11
http://dbpedia.org/ontology/Film;;;What awards were given to the screenplayer of <A>?;SELECT DISTINCT ?uri where { <A> dbp:screenplay ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbp:screenplay ?x . ?x dbp:awards ?uri };a939d5ed61ef4060a81ee31509198135
http://dbpedia.org/ontology/Film;;;What awards were presented to the person who produced <A>?;SELECT DISTINCT ?uri where { <A> dbp:producer ?x . ?x dbp:awards ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbp:producer ?x . ?x dbp:awards ?uri . ?x a dbo:Person };f1a4a596441946deabb79234cff39587
;;;What fictional character's species is <A>;SELECT DISTINCT ?uri where { ?uri dbo:species <A> };select distinct ?a where { ?uri dbo:species ?a };f1deb0821db74c36b4d4e3febc19fb74
http://dbpedia.org/ontology/Person;;;What is telecasted on the network where <A> holds important position?;SELECT DISTINCT ?uri where { ?x dbo:keyPerson <A> . ?uri dbo:network ?x };select distinct ?a where { ?x dbo:keyPerson ?a . ?uri dbo:network ?x };b46c1b706504419494f4cccf84754e62
http://dbpedia.org/ontology/Person;;;What is that show whose theme was composed by <A>?;SELECT DISTINCT ?uri where { ?x dbp:themeMusicComposer <A> . ?x dbp:showName ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:themeMusicComposer ?a . ?x dbp:showName ?uri . ?x a dbo:TelevisionShow };14307a9d57c5428a9076bc5d123a7434
http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;What is the name of the television show whose developer is <A> and actor is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:developer <A> . ?uri dbo:starring <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:developer ?a . ?uri dbo:starring ?b . ?uri a dbo:TelevisionShow };9b7068c9ee9b45a4b38e8b7da17bc32d
http://dbpedia.org/ontology/Film;;;What is the alma mater of the actors of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:starring ?x . ?x dbp:almaMater ?uri };select distinct ?a where { ?a dbp:starring ?x . ?x dbp:almaMater ?uri };1184156dad9a478ba5e2c3590f20096e
http://dbpedia.org/ontology/Broadcaster;;;What is the area of the broadcast network which has the affiliation with <A>?;SELECT DISTINCT ?uri where { <A> dbp:affiliation ?x . ?x dbp:area ?uri . ?x a dbo:BroadcastNetwork };select distinct ?a where { ?a dbp:affiliation ?x . ?x dbp:area ?uri . ?x a dbo:BroadcastNetwork };7db0553af6fd43c3b91d8767f3add3f3
http://dbpedia.org/ontology/Film;;;What is the awards won by the producer of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:producer ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbo:producer ?x . ?x dbp:awards ?uri };068c624211d44e12aee8f503946a20b0
http://dbpedia.org/ontology/Film;;;What is the birth place of the cast of <A>?;SELECT DISTINCT ?uri where { <A> dbp:starring ?x . ?x dbp:placeOfBirth ?uri };select distinct ?a where { ?a dbp:starring ?x . ?x dbp:placeOfBirth ?uri };74d88ff455d1442eb2c7cf52c8f6bed4
http://dbpedia.org/ontology/Broadcaster;;;What is the broadcast area of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:area ?uri };select distinct ?a where { ?a dbp:area ?uri };c4acb6859ef2400a8989bd05cdf3f766
http://dbpedia.org/ontology/Broadcaster;;;What is the broadcast area of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:broadcastArea ?uri };select distinct ?a where { ?a dbo:broadcastArea ?uri };9a955de401c24f42860fa3e6615c803a
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;What is the casting of the movie directed by <A> ?;SELECT DISTINCT ?uri where { ?x dbo:director <A> . ?x dbp:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbo:director ?a . ?x dbp:starring ?uri . ?x a dbo:Film };af5b6ee8ccc1462dabeac10e39245823
http://dbpedia.org/ontology/Broadcaster;;;What is the city of the television station whose affiliations is <A>?;SELECT DISTINCT ?uri where { ?x dbp:affiliations <A> . ?x dbp:city ?uri . ?x a dbo:TelevisionStation };select distinct ?a where { ?x dbp:affiliations ?a . ?x dbp:city ?uri . ?x a dbo:TelevisionStation };660aad2b85ce42fdbf4dd20e86dee609
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Person;;What is the common region of the braod cast area of <A> and nationality of <B> ?;SELECT DISTINCT ?uri where { <A> dbp:broadcastArea ?uri . <B> dbo:nationality ?uri };select distinct ?a, ?b where { ?a dbp:broadcastArea ?uri . ?b dbo:nationality ?uri };980685643c634f59b6a8c2114e5f6b75
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Person;;What is the fictional character which belongs to families of <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbp:family <B> . ?uri dbp:family <A> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:family ?b . ?uri dbp:family ?a . ?uri a dbo:FictionalCharacter };3fd0705b3a18418ca9748691d9ad8be4
;http://dbpedia.org/ontology/Person;;What is the fictional character which has <A> and <B>n as relatives?;SELECT DISTINCT ?uri where { ?uri dbp:relatives <A> . ?uri dbp:relatives <B> . ?uri a dbo:FictionalCharacter };select distinct ?a, ?b where { ?uri dbp:relatives ?a . ?uri dbp:relatives ?b . ?uri a dbo:FictionalCharacter };a737185e8cc848e3ab56d97876bccbff
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;What is the fictional character whose voice over is done by the animator of <A> ?;SELECT DISTINCT ?uri where { ?x dbp:animator <A> . ?uri dbo:voice ?x . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:animator ?a . ?uri dbo:voice ?x . ?uri a dbo:FictionalCharacter };e59b93cd1e8d40d8be26c41a243212cc
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/FilmMaker110088390;;What is the movie whose producer is <B> and directed by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:producer <B> . ?uri dbp:director <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:producer ?b . ?uri dbp:director ?a . ?uri a dbo:Film };8788b9a42eae46a7ae9f7ac2c79a8056
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/ComicsCreator;;;What is the name of the characters created by <A>?;SELECT DISTINCT ?uri where { ?x dbp:creators <A> . ?x dbp:characterName ?uri . ?x a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:creators ?a . ?x dbp:characterName ?uri . ?x a dbo:FictionalCharacter };ae769d3fce084866a06c22f70221aaa8
;;;What is the person known for who is the movie director of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:director ?x . ?x dbo:knownFor ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbp:director ?x . ?x dbo:knownFor ?uri . ?x a dbo:Person };744c835886844eeca2d45ce92e2d5c28
http://dbpedia.org/ontology/Film;;;What is the place of birth of the stars of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:starring ?x . ?x dbo:birthPlace ?uri };select distinct ?a where { ?a dbp:starring ?x . ?x dbo:birthPlace ?uri };659915fe8d864b808a9a514f5b3ff35d
http://dbpedia.org/ontology/Broadcaster;;;What is the producer of the television shows whose channel is <A>?;SELECT DISTINCT ?uri where { ?x dbp:channel <A> . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:channel ?a . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };09cdda0da032441592256ac3ea5b7206
;http://dbpedia.org/ontology/WrittenWork;;What is the products of the <A> and series of the <B>;SELECT DISTINCT ?uri where { <A> dbp:products ?uri . <B> dbo:series ?uri };select distinct ?a, ?b where { ?a dbp:products ?uri . ?b dbo:series ?uri };d4cce931336041649e567c91e9bfb7c6
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;What is the show which opens with <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <A> . ?uri dbo:openingTheme <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:openingTheme ?a . ?uri dbo:openingTheme ?b . ?uri a dbo:TelevisionShow };3c64c763bb4342f8abf5e919c69c9144
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Broadcaster;;What is the television show which has cast member as <A> and network is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:starring <A> . ?uri dbp:network <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:starring ?a . ?uri dbp:network ?b . ?uri a dbo:TelevisionShow };7a4d4807f7e44d8298c4c03226d00b85
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;What is the television show whose cast members are <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbo:starring <B> . ?uri dbo:starring <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:starring ?b . ?uri dbo:starring ?a . ?uri a dbo:TelevisionShow };34f7503c1f79416eaf15faa883428f9d
;;;What is the television show whose channel's parent organisation is <A>?;SELECT DISTINCT ?uri where { ?x dbo:parentOrganisation <A> . ?uri dbo:channel ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:parentOrganisation ?a . ?uri dbo:channel ?x . ?uri a dbo:TelevisionShow };ccb09f2a248b46a6bbc34abf3022e4f2
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Writer;;What is the television show whose company is <A> and written by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:company <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:company ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };162e1b03aabf4dec9809ad4bd74fbbde
http://dbpedia.org/class/yago/FilmMaker110088390;;;What is the television show whose developer is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:developer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:developer ?a . ?uri a dbo:TelevisionShow };7cb26f57f9304355832fe7c4e7d30a8d
http://dbpedia.org/ontology/Person;;;What is the television show whose executive producer is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:executiveProducer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:executiveProducer ?a . ?uri a dbo:TelevisionShow };9d8915a4779f49148599be5ab27a571d
http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;;What is the television show whose executive producer is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:executiveProducer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:executiveProducer ?a . ?uri a dbo:TelevisionShow };3e1f362c96fe4cc592bfd13bfb855659
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;What is the television show whose judges is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:judges <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:judges ?a . ?uri a dbo:TelevisionShow };9093d0d6f2a342f4933ca945615cc566
;;;What is the television show whose opening theme is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:openingTheme ?a . ?uri a dbo:TelevisionShow };8cb5fda5cb994ed4a6559ef08a02c270
http://dbpedia.org/ontology/MusicalWork;;;What is the television show whose opening theme is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:openingTheme ?a . ?uri a dbo:TelevisionShow };c2faa296b9ad4e5387981be381e83c53
http://dbpedia.org/ontology/Film;;;What is the television show whose previous work is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:previousWork <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:previousWork ?a . ?uri a dbo:TelevisionShow };8ebe5072325a4339b8218b2a7943e4c6
http://dbpedia.org/ontology/Writer;;;What is the television show whose producer is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:producer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:producer ?a . ?uri a dbo:TelevisionShow };73bbae8c251d41238b7dcf1aa0e155e4
http://dbpedia.org/ontology/TelevisionShow;;;What is the television show whose related with <A>?;SELECT DISTINCT ?uri where { ?uri dbo:related <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:related ?a . ?uri a dbo:TelevisionShow };1c9a76e118864c9c95e250236798f5fa
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/MusicalArtist;;What is the television show whose sculptor is <A> and composed by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <A> . ?uri dbo:composer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:creator ?a . ?uri dbo:composer ?b . ?uri a dbo:TelevisionShow };dc23a511ad514de1aa0138b011745698
http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/TelevisionShow;;What is the television show whose subsequent work is <B> and developed by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:subsequentWork <B> . ?uri dbo:developer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:subsequentWork ?b . ?uri dbo:developer ?a . ?uri a dbo:TelevisionShow };7509db63f63840548107d56cc97f5a0f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;What is the television show whose vocals are performed by <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };b38170945c5d442e80799fe9d203be22
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/Writer;;What is the total number of fictional characters whose created by <B> and series is <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:creator <B> . ?uri dbo:series <A> };select distinct ?a, ?b where { ?uri dbo:creator ?b . ?uri dbo:series ?a };b06e3b9df6474551b29eda51267fbaca
;;;What is the total number of other characters of the plays whose characters is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:characters <A> . ?x dbp:characters ?uri };select distinct ?a where { ?x dbp:characters ?a . ?x dbp:characters ?uri };76e88d03b8924d729700e000cb86e234
http://dbpedia.org/ontology/RecordLabel;;;What is the TV Show whose theme is composed by someone signed up with <A>?;SELECT DISTINCT ?uri where { ?x dbo:recordLabel <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:recordLabel ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };9303edfb0af843e094e5273e975f604e
http://dbpedia.org/class/yago/FilmMaker110088390;;;What movies have been produced by the production house owned by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:producer <A> };select distinct ?a where { ?uri dbo:producer ?a };f81e51fa36714841b71d71f2c518a477
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;;;What movies have been written by authors of <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:writer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:writer ?a . ?uri a dbo:Film };9199869451414c5da79221a37f5ffefd
http://dbpedia.org/ontology/TelevisionShow;;;What religion are the characters of <A> from?;SELECT DISTINCT ?uri where { ?x dbp:series <A> . ?x dbo:religion ?uri . ?x a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:series ?a . ?x dbo:religion ?uri . ?x a dbo:FictionalCharacter };8b983e3a0771427fa876d31b4806a6a2
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;;What show has judge as <A> sculptors as <B>?;SELECT DISTINCT ?uri where { ?uri dbp:judges <A> . ?uri dbp:creator <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:judges ?a . ?uri dbp:creator ?b . ?uri a dbo:TelevisionShow };54ca819c32f845f1830c057254adb0e4
http://dbpedia.org/ontology/Broadcaster;;;What show has <B> and <A> as channels ?;SELECT DISTINCT ?uri where { ?uri dbo:channel <B> . ?uri dbo:channel <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:channel ?b . ?uri dbo:channel ?a . ?uri a dbo:TelevisionShow };b8845f4e32974bfca57abbacda4140bc
http://dbpedia.org/ontology/Broadcaster;;;What shows are aired on sister channels of <A>;SELECT DISTINCT ?uri where { ?x dbp:sisterNames <A> . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:sisterNames ?a . ?uri dbo:network ?x . ?uri a dbo:TelevisionShow };2f903de0d05c4f3c9eb0fcf478f43406
http://dbpedia.org/ontology/Person;;;What shows are on the networks which are from <A>?;SELECT DISTINCT ?uri where { ?x dbo:locationCountry <A> . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:locationCountry ?a . ?uri dbp:network ?x . ?uri a dbo:TelevisionShow };99a06bb6d4f3448da8d9b37aec6a17fe
http://dbpedia.org/ontology/Broadcaster;;;"What shows used to air on the channel which was earlier known as ""<A>""?";SELECT DISTINCT ?uri where { ?x dbo:predecessor <A> . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:predecessor ?a . ?uri dbp:distributor ?x . ?uri a dbo:TelevisionShow };482f01e78dbf4a2595e15e5c9ad32ab3
;;;What television show are distributed by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:distributor ?a . ?uri a dbo:TelevisionShow };278c456525224d648387222246b05683
;;;What television show is aired on channel <A>?;SELECT DISTINCT ?uri where { ?uri dbo:channel <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:channel ?a . ?uri a dbo:TelevisionShow };dafa96a08d1e4268be2cd01faa56f652
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;;What television show is magistrated by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:judges <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:judges ?a . ?uri a dbo:TelevisionShow };bd5737093bad479e8cc07b908e5189da
http://dbpedia.org/ontology/Broadcaster;;;What television shows's distributor is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:distributor ?a . ?uri a dbo:TelevisionShow };a3405b0ce1794c309e62e6db698ecfb1
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/TelevisionShow;;What tv series can be said to be related to <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbo:related <B> . ?uri dbo:related <A> };select distinct ?a, ?b where { ?uri dbo:related ?b . ?uri dbo:related ?a };6ff03a568e2e4105b491ab1c1411c1ab
http://dbpedia.org/ontology/Person;;;What tv show is created by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:developer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:developer ?a . ?uri a dbo:TelevisionShow };1b967dc18818484ba213913e39ac2215
http://dbpedia.org/ontology/Film;;;What tv shows were born out of a collaboration of <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbo:company <A> . ?uri dbo:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:company ?a . ?uri dbo:company ?b . ?uri a dbo:TelevisionShow };768ceadf1cfc424f98c61ac9892e985a
;;;Where are the movies directed by <A> recorded?;SELECT DISTINCT ?uri where { ?x dbo:director <A> . ?x dbp:recorded ?uri };select distinct ?a where { ?x dbo:director ?a . ?x dbp:recorded ?uri };ff50d4217d0d43c69bb66a163247c4f1
http://dbpedia.org/ontology/Broadcaster;;;where are the sister stations of <A> broadcasted?;SELECT DISTINCT ?uri where { ?x dbp:sisterStations <A> . ?x dbo:broadcastArea ?uri };select distinct ?a where { ?x dbp:sisterStations ?a . ?x dbo:broadcastArea ?uri };1da410830ef64a70bdaf8bedfba7a0ad
http://dbpedia.org/ontology/Film;;;Where did the film director of <A> die?;SELECT DISTINCT ?uri where { <A> dbo:director ?x . ?x dbo:deathPlace ?uri };select distinct ?a where { ?a dbo:director ?x . ?x dbo:deathPlace ?uri };0cd31fba24c240f588c0916b021f4d63
http://dbpedia.org/ontology/Broadcaster;;;Where do networks affiliated with <A> broadcast?;SELECT DISTINCT ?uri where { ?x dbp:affiliation <A> . ?x dbp:area ?uri . ?x a dbo:BroadcastNetwork };select distinct ?a where { ?x dbp:affiliation ?a . ?x dbp:area ?uri . ?x a dbo:BroadcastNetwork };ff08a87358c14e6a98db33b34547c5b5
http://dbpedia.org/ontology/Film;;;Where is the fictional character from, whose last appearance was in <A>?;SELECT DISTINCT ?uri where { ?x dbp:last <A> . ?x dbp:nationality ?uri . ?x a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:last ?a . ?x dbp:nationality ?uri . ?x a dbo:FictionalCharacter };7e43e5b0e86d44889fb270fb7665e52b
http://dbpedia.org/ontology/Broadcaster;;;Where is the radio broadcasted in, whose sister station is <A>?;SELECT DISTINCT ?uri where { ?x dbo:sisterStation <A> . ?x dbo:broadcastArea ?uri . ?x a dbo:RadioStation };select distinct ?a where { ?x dbo:sisterStation ?a . ?x dbo:broadcastArea ?uri . ?x a dbo:RadioStation };6cf9b1c0073641558b6b87a6afd477c3
http://dbpedia.org/ontology/Broadcaster;;;Where is the station whose sister channel is the <A>?;SELECT DISTINCT ?uri where { ?x dbp:sisterStations <A> . ?x dbp:city ?uri . ?x a dbo:TelevisionStation };select distinct ?a where { ?x dbp:sisterStations ?a . ?x dbp:city ?uri . ?x a dbo:TelevisionStation };b8b5452850cc482eb87779a8ed2c2159
http://dbpedia.org/ontology/Film;;;Where was <A> recorded ?;SELECT DISTINCT ?uri where { <A> dbp:recorded ?uri };select distinct ?a where { ?a dbp:recorded ?uri };9e8d0173dbb749c3a9861e1887894afe
http://dbpedia.org/ontology/MusicalWork;;;Where was the <A> recorded?;SELECT DISTINCT ?uri where { <A> dbo:recordedIn ?uri };select distinct ?a where { ?a dbo:recordedIn ?uri };e8ba1b2b3f3944aa9e7a39ebfb9d8640
http://dbpedia.org/ontology/Film;;;Where was the movie after <A> recorded?;SELECT DISTINCT ?uri where { <A> dbp:nextAlbum ?x . ?x dbp:recorded ?uri . ?x a dbo:Film };select distinct ?a where { ?a dbp:nextAlbum ?x . ?x dbp:recorded ?uri . ?x a dbo:Film };463580ab42f54356945d1ed8c2f9b38a
http://dbpedia.org/ontology/TelevisionShow;;;Where was the narrator of <A> born?;SELECT DISTINCT ?uri where { <A> dbo:narrator ?x . ?x dbp:birthPlace ?uri };select distinct ?a where { ?a dbo:narrator ?x . ?x dbp:birthPlace ?uri };b144d19ed17845e3be65c933a80b56a5
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/MusicGenre;;Which <B> show has <A> as executive producer ?;SELECT DISTINCT ?uri where { ?uri dbo:executiveProducer <A> . ?uri dbp:genre <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:executiveProducer ?a . ?uri dbp:genre ?b . ?uri a dbo:TelevisionShow };0fc6655da5464bec8b5a6df22edcaa86
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Which <A> show is presented by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:presenter <B> . ?uri dbp:channel <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:presenter ?b . ?uri dbp:channel ?a . ?uri a dbo:TelevisionShow };10c87cc916094a9a81664a0eed9decea
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;;;Which <A>'s movie is distributed by <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:writer <A> . ?uri dbp:distributor <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:writer ?a . ?uri dbp:distributor ?b . ?uri a dbo:Film };f1363bc48be643bd99b68fa31d8b0d19
http://dbpedia.org/ontology/Person;;;Which <B> show was produced by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:executiveProducer <A> . ?uri dbp:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:executiveProducer ?a . ?uri dbp:company ?b . ?uri a dbo:TelevisionShow };5a15996c69764d78950ee50018ff8de5
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/Broadcaster;;Which <B> TV show is related with <A>?;SELECT DISTINCT ?uri where { ?uri dbo:network <B> . ?uri dbo:related <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:network ?b . ?uri dbo:related ?a . ?uri a dbo:TelevisionShow };17ca429ec4984bb7bc285f94d3de62b9
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Which <B>'s movie has a screenplay by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:screenplay <A> . ?uri dbp:director <B> };select distinct ?a, ?b where { ?uri dbp:screenplay ?a . ?uri dbp:director ?b };16be3ab972a8420cb9d1ab24a7d7ee5b
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Broadcaster;;Which <B>'s television series was produced by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <B> . ?uri dbo:producer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:distributor ?b . ?uri dbo:producer ?a . ?uri a dbo:TelevisionShow };43e17ab32b48408188702fc59b80e3d6
;;;Which <B>'s TV show has opening theme as <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:company <B> . ?uri dbo:openingTheme <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:company ?b . ?uri dbo:openingTheme ?a . ?uri a dbo:TelevisionShow };fa67ea0509064e84a85b05bc03108e02
;;;Which actors have performed in plays performed in <A>?;SELECT DISTINCT ?uri where { ?x dbp:place <A> . ?x dbp:starring ?uri . ?x a dbo:Play };select distinct ?a where { ?x dbp:place ?a . ?x dbp:starring ?uri . ?x a dbo:Play };da4845645dbf4dd5b072c54980634196
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Film;;Which animator of <A> is also the director of <B> ?;SELECT DISTINCT ?uri where { <A> dbp:animator ?uri . <B> dbo:director ?uri };select distinct ?a, ?b where { ?a dbp:animator ?uri . ?b dbo:director ?uri };a7fe79af1995496f9ee76331f0d5ebb5
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/Film;;Which animator of <A> is also the film director of <B> ?;SELECT DISTINCT ?uri where { <B> dbo:director ?uri . <A> dbp:animator ?uri };select distinct ?a, ?b where { ?b dbo:director ?uri . ?a dbp:animator ?uri };d23e68c01b574ddc9271799a3081aec1
http://dbpedia.org/ontology/Film;;;Which animator of <B> is also the animator of the <A> ?;SELECT DISTINCT ?uri where { <B> dbo:animator ?uri . <A> dbp:animator ?uri };select distinct ?a, ?b where { ?b dbo:animator ?uri . ?a dbp:animator ?uri };04e3bd6b0c8e42cc847a95d2618c62fd
http://dbpedia.org/ontology/Film;;;Which animator of the <B> is also the cinematographer of the <A>?;SELECT DISTINCT ?uri where { <B> dbo:animator ?uri . <A> dbp:cinematography ?uri };select distinct ?a, ?b where { ?b dbo:animator ?uri . ?a dbp:cinematography ?uri };0ffa12b348584eac8502b778b6e3013a
http://dbpedia.org/ontology/Broadcaster;;;Which are the previous broadcast networks of sister channels of <A>?;SELECT DISTINCT ?uri where { <A> dbp:sisterStations ?x . ?x dbo:formerBroadcastNetwork ?uri };select distinct ?a where { ?a dbp:sisterStations ?x . ?x dbo:formerBroadcastNetwork ?uri };3bb69cb3b8634c3689b4846fcbb449cd
http://dbpedia.org/ontology/Person;;;Which are the television show which have been created by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:creator <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:creator ?a . ?uri a dbo:TelevisionShow };383f41d0dcfb442f8a4606d5de36ac08
http://dbpedia.org/ontology/Film;;;Which awards did the narrator of <A> win?;SELECT DISTINCT ?uri where { <A> dbo:narrator ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbo:narrator ?x . ?x dbp:awards ?uri };4034b4110a224b589124d0037cfd52c3
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/TelevisionShow;;Which broad cast area od <A> is the country of <B> ?;SELECT DISTINCT ?uri where { <A> dbo:broadcastArea ?uri . <B> dbo:country ?uri };select distinct ?a, ?b where { ?a dbo:broadcastArea ?uri . ?b dbo:country ?uri };da861f99dfe244209207a2f1ddbd8a39
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Person;;Which broadcast area of <A> is also the nationality of <B> ?;SELECT DISTINCT ?uri where { <A> dbp:broadcastArea ?uri . <B> dbo:nationality ?uri };select distinct ?a, ?b where { ?a dbp:broadcastArea ?uri . ?b dbo:nationality ?uri };4230209176f74a3380d70219147cb40e
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Person;;Which broadcast area of <A> is also the palce of birth of <B>;SELECT DISTINCT ?uri where { <A> dbo:broadcastArea ?uri . <B> dbp:placeOfBirth ?uri };select distinct ?a, ?b where { ?a dbo:broadcastArea ?uri . ?b dbp:placeOfBirth ?uri };7b6793a8d8a24f5da233b3f76475f5f9
http://dbpedia.org/ontology/TelevisionShow;;;Which cities were in the TV Show which came after <A>?;SELECT DISTINCT ?uri where { <A> dbo:subsequentWork ?x . ?x dbp:city ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?a dbo:subsequentWork ?x . ?x dbp:city ?uri . ?x a dbo:TelevisionShow };f860781f868d4a7f9f59ad56d60e1021
http://dbpedia.org/ontology/TelevisionEpisode;http://dbpedia.org/ontology/TelevisionShow;;Which executive producer of <A> also produced <B> ?;SELECT DISTINCT ?uri where { <A> dbp:executiveProducer ?uri . <B> dbo:producer ?uri };select distinct ?a, ?b where { ?a dbp:executiveProducer ?uri . ?b dbo:producer ?uri };629c24823cdd4a4793f7696489607700
http://dbpedia.org/ontology/TelevisionShow;;;Which executive producer of <A> is also an important person at <B>?;SELECT DISTINCT ?uri where { <A> dbo:executiveProducer ?uri . <B> dbo:keyPerson ?uri };select distinct ?a, ?b where { ?a dbo:executiveProducer ?uri . ?b dbo:keyPerson ?uri };7231e19892bf4ed6bc48ad9493d50db8
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Which label released the movie written by <A>?;SELECT DISTINCT ?uri where { ?x dbp:writer <A> . ?x dbp:label ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:writer ?a . ?x dbp:label ?uri . ?x a dbo:Film };6829110a0f8c4c0297649f7ae290e6b3
;http://dbpedia.org/class/yago/FilmMaker110088390;;Which movie produced by <B> was distributed by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <A> . ?uri dbp:producer <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:distributor ?a . ?uri dbp:producer ?b . ?uri a dbo:Film };d0aac092bd35492b9e073efaf22ba601
http://dbpedia.org/class/yago/Editor110044879;;;Which movies did <A> edit?;SELECT DISTINCT ?uri where { ?uri dbp:editing <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:editing ?a . ?uri a dbo:Film };5dd00b4f9282453d994c9bacbec085e0
;;;which movies have been published by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:distributor <A> };select distinct ?a where { ?uri dbo:distributor ?a };e7b65b4aecc7437f80afe8be2d2a53eb
;;;Which movies have someone on their cast from <A> in Tennessee?;SELECT DISTINCT ?uri where { ?x dbo:hometown <A> . ?uri dbp:starring ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:hometown ?a . ?uri dbp:starring ?x . ?uri a dbo:Film };b4a89e8c9b55499eaa9963fe4b9d6152
http://dbpedia.org/ontology/Award;;;Which movies' composers have won a <A>?;SELECT DISTINCT ?uri where { ?x dbo:award <A> . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:award ?a . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };a655921614b54e81b96b9832c987cc05
http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;Which movies's screenplay is written by <A>;SELECT DISTINCT ?uri where { ?uri dbp:screenplay <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:screenplay ?a . ?uri a dbo:Film };899f6fb23f3148599baf961c74ad532d
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/WrittenWork;;Which notable series of <A> is also the series of <B> ?;SELECT DISTINCT ?uri where { <B> dbo:series ?uri . <A> dbo:notableWork ?uri };select distinct ?a, ?b where { ?b dbo:series ?uri . ?a dbo:notableWork ?uri };9111a28178e8420b88b3124f0b714e72
http://dbpedia.org/ontology/ArchitecturalStructure;http://dbpedia.org/ontology/Broadcaster;;Which parent organization of <B> TV also owns <A> ?;SELECT DISTINCT ?uri where { <B> dbo:parentOrganisation ?uri . <A> dbo:owner ?uri };select distinct ?a, ?b where { ?b dbo:parentOrganisation ?uri . ?a dbo:owner ?uri };37e79131355440699c0b9efeb17ecc4a
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/Broadcaster;;Which parent organization of <B> TV is also the label provider of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:label ?uri . <B> dbo:parentOrganisation ?uri };select distinct ?a, ?b where { ?a dbp:label ?uri . ?b dbo:parentOrganisation ?uri };6dd6deaa7cd2434fb62beb47d4ae9ff9
http://dbpedia.org/ontology/TelevisionShow;;;Which people are known for appearing on the television show <A>?;SELECT DISTINCT ?uri where { ?uri dbo:knownFor <A> . ?uri a dbo:Person };select distinct ?a where { ?uri dbo:knownFor ?a . ?uri a dbo:Person };f78b3fe9e8724eb4810bdeed1a83e057
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/Writer;;Which producer of <A> is also the notable work of <B> ?;SELECT DISTINCT ?uri where { <A> dbo:producer ?uri . <B> dbo:notableWork ?uri };select distinct ?a, ?b where { ?a dbo:producer ?uri . ?b dbo:notableWork ?uri };3b829598cada4093999a79cba952861b
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Broadcaster;;Which program was on <B> network with executive producer as <A>?;SELECT DISTINCT ?uri where { ?uri dbo:network <B> . ?uri dbo:executiveProducer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:network ?b . ?uri dbo:executiveProducer ?a . ?uri a dbo:TelevisionShow };978a09e0cd01477cb3b794cae035132a
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Person;;Which series are <A> and <B> both from?;SELECT DISTINCT ?uri where { <A> dbo:series ?uri . <B> dbo:series ?uri };select distinct ?a, ?b where { ?a dbo:series ?uri . ?b dbo:series ?uri };732483cb47924b00b32792c0bb79f680
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/WrittenWork;;Which series has an episode called <B> and also a character named <A> ?;SELECT DISTINCT ?uri where { <B> dbp:series ?uri . <A> dbp:characters ?uri };select distinct ?a, ?b where { ?b dbp:series ?uri . ?a dbp:characters ?uri };e8c5049fd8a743ee8d0faf76a10ae000
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Writer;;Which series was written by <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbp:writer <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:writer ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };a9844619aaa14527a44829ee64b0658b
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/ontology/Person;;Which show's network is <A> has <B> as executive producer ?;SELECT DISTINCT ?uri where { ?uri dbp:network <A> . ?uri dbo:executiveProducer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:network ?a . ?uri dbo:executiveProducer ?b . ?uri a dbo:TelevisionShow };d12e9dcf5e3944eb88c56c3e6cdab8ad
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Which shows are similar to the ones produced by <A>?;SELECT DISTINCT ?uri where { ?x dbo:executiveProducer <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:executiveProducer ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };65de0b27d7cf414daa73bab1546dfaab
http://dbpedia.org/ontology/Person;;;Which shows are voiced be <A> citizens?;SELECT DISTINCT ?uri where { ?x dbo:stateOfOrigin <A> . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:stateOfOrigin ?a . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };ce1b21f49b74424fb4c6ab11cc56fedd
http://dbpedia.org/ontology/RecordLabel;;;Which shows have voices from people signed up with <A>?;SELECT DISTINCT ?uri where { ?x dbp:label <A> . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:label ?a . ?uri dbp:voices ?x . ?uri a dbo:TelevisionShow };6a18707a2ce342118ea82c357c85d158
http://dbpedia.org/ontology/MusicalWork;;;Which shows' opening themes was used to make <A>?;SELECT DISTINCT ?uri where { ?x dbo:subsequentWork <A> . ?uri dbo:openingTheme ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:subsequentWork ?a . ?uri dbo:openingTheme ?x . ?uri a dbo:TelevisionShow };db7bce6fd45745b7833bc9aa702dc2f7
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Broadcaster;;Which sitcom is broadcasted by <B> and presented by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:channel <B> . ?uri dbp:presenter <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:channel ?b . ?uri dbp:presenter ?a . ?uri a dbo:TelevisionShow };723c2b0c71d445fd9d6cf4d87006383a
;;;Which sitcom's company is <A> and is located in <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:company <A> . ?uri dbp:location <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:company ?a . ?uri dbp:location ?b . ?uri a dbo:TelevisionShow };c228f0f4e7004f3d84822625c29a1e93
;;;Which sitcoms are made by a company headquartered in <A>?;SELECT DISTINCT ?uri where { ?x dbo:headquarter <A> . ?uri dbo:company ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:headquarter ?a . ?uri dbo:company ?x . ?uri a dbo:TelevisionShow };21af0cba33be4e3a978696b579445972
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Which televion show's theme music was given by <A> and is broadcasted by <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:themeMusicComposer <A> . ?uri dbo:network <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:themeMusicComposer ?a . ?uri dbo:network ?b . ?uri a dbo:TelevisionShow };c949eeb67a4c448589588ee0e2862b8d
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Writer;;Which television show 's producer is <A> and written by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:producer <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:producer ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };aa4776a47306400884ee92fe3a010fed
;http://dbpedia.org/ontology/MusicalWork;;"Which television show is based in <A> and has opening theme as ""<B>"" ?";SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <B> . ?uri dbo:location <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:openingTheme ?b . ?uri dbo:location ?a . ?uri a dbo:TelevisionShow };a94b8573bbf7434592b2463cc3700be8
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/TelevisionShow;;Which television show is the subsequent work of <B> and the opening theme is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:subsequentWork <B> . ?uri dbo:openingTheme <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:subsequentWork ?b . ?uri dbo:openingTheme ?a . ?uri a dbo:TelevisionShow };eea1dcd97f494d799d7fcacd6bad1685
;;;Which television show's company is <B> and is located in <A>?;SELECT DISTINCT ?uri where { ?uri dbp:company <B> . ?uri dbo:location <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:company ?b . ?uri dbo:location ?a . ?uri a dbo:TelevisionShow };a9bd73968852449abc9875ea0e72a3f9
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Person;;Which television show's developer is <B> and voices to the character is by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:developer <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:developer ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };0e1f9caa3e1941c08f8685a375af037d
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/Broadcaster;;Which television show's network is <B> and is related to <A>?;SELECT DISTINCT ?uri where { ?uri dbo:network <B> . ?uri dbo:related <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:network ?b . ?uri dbo:related ?a . ?uri a dbo:TelevisionShow };f3ad79c40d524db4b41288872c95ba91
;;;Which television shows has sound format as <A>;SELECT DISTINCT ?uri where { ?uri dbo:format <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:format ?a . ?uri a dbo:TelevisionShow };a043a59e39a94f1b804acd94a58801e2
http://dbpedia.org/ontology/Writer;;;Which television shows have been produced by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:producer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:producer ?a . ?uri a dbo:TelevisionShow };6547856ca710456fbcb9872e8a03a4e2
;;;Which televison shows have location as <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:location <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:location ?a . ?uri a dbo:TelevisionShow };4545adc58a0241e7a7f875171495d9db
;;;Which tv series have a score composed by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:composer <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:composer ?a . ?uri a dbo:TelevisionShow };cd190de039534a6d91abee2ac3dd411c
http://dbpedia.org/ontology/TelevisionShow;;;Which Tv series led to <A>?;SELECT DISTINCT ?uri where { ?uri dbo:subsequentWork <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbo:subsequentWork ?a . ?uri a dbo:TelevisionShow };24323c55c5084725bbdb07997dfec006
http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Which TV show developed by <A> has artist as <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:artist <B> . ?uri dbo:developer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:artist ?b . ?uri dbo:developer ?a . ?uri a dbo:TelevisionShow };e54d1194593e4fabba95e42efed756c9
;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Which TV show distributed by <A> <B> as one of the artist ?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <A> . ?uri dbp:artist <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:distributor ?a . ?uri dbp:artist ?b . ?uri a dbo:TelevisionShow };1f3e42c050df4103ab6f4ee7b80bc037
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;Which TV show had a judge named <B> and was presented by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:judges <B> . ?uri dbo:presenter <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:judges ?b . ?uri dbo:presenter ?a . ?uri a dbo:TelevisionShow };7e720d99f29d4758adc7c2bcbf7b69d7
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/MusicalArtist;;Which TV show is related to <A> and theme music is composed by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:related <A> . ?uri dbp:themeMusicComposer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:related ?a . ?uri dbp:themeMusicComposer ?b . ?uri a dbo:TelevisionShow };afaeb0eb33ff41d5be722b4859f82618
;;;Which TV show produced by <B> and is located in <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:company <B> . ?uri dbo:location <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:company ?b . ?uri dbo:location ?a . ?uri a dbo:TelevisionShow };fa41d6a62ed040f5a195ea1fa799f2d4
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Film;;Which tv show was preceded by <B> and voice to the character was given by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:previousWork <B> . ?uri dbp:voices <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:previousWork ?b . ?uri dbp:voices ?a . ?uri a dbo:TelevisionShow };dd1b888f16a14a13b8be3e662804a5d9
http://dbpedia.org/ontology/RecordLabel;;;Which TV show whose theme is composed by someone signed up with <A>?;SELECT DISTINCT ?uri where { ?x dbo:recordLabel <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:recordLabel ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };b32f0ffff06741eab6c71835a504396d
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/ScreenWriter|http://dbpedia.org/ontology/Writer;;Which TV show's opening theme is <A> and executive producer is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:openingTheme <A> . ?uri dbp:executiveProducer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:openingTheme ?a . ?uri dbp:executiveProducer ?b . ?uri a dbo:TelevisionShow };53a9beca92384cdda4e74205f5800cb0
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Film;;Which TV show's company is <B> and is produced by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:company <B> . ?uri dbp:producer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:company ?b . ?uri dbp:producer ?a . ?uri a dbo:TelevisionShow };ee40fd8fb95f42b7a50f05e872395ec7
http://dbpedia.org/ontology/Person;;;Which TV show's composer is <B> and executive producer as <A>?;SELECT DISTINCT ?uri where { ?uri dbo:composer <B> . ?uri dbo:executiveProducer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:composer ?b . ?uri dbo:executiveProducer ?a . ?uri a dbo:TelevisionShow };170a69d8ac1c40e0930df1a674d5c1cf
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Person;;Which TV show's executive producer is <B> and composed by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:executiveProducer <B> . ?uri dbp:composer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:executiveProducer ?b . ?uri dbp:composer ?a . ?uri a dbo:TelevisionShow };e1d331f8870d4fcb99ef55121fda7c31
http://dbpedia.org/ontology/Writer;;;Which TV show's producer is <A> and company is <B>?;SELECT DISTINCT ?uri where { ?uri dbo:producer <A> . ?uri dbo:company <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:producer ?a . ?uri dbo:company ?b . ?uri a dbo:TelevisionShow };fd8b42814a494505a95d0aad81dbb23d
;http://dbpedia.org/ontology/TelevisionShow;;Which TV show's setting is in <A> and is the subsequent work of <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:subsequentWork <B> . ?uri dbo:location <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:subsequentWork ?b . ?uri dbo:location ?a . ?uri a dbo:TelevisionShow };179e610843e145489491954c3a91b179
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Which TV show's theme was composed by a band in which <A> used to perform?;SELECT DISTINCT ?uri where { ?x dbo:formerBandMember <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:formerBandMember ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };295609af44de49ffadaa466cfbfbc719
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Broadcaster;;Which TV show's writer is <A> and distributor is <B>?;SELECT DISTINCT ?uri where { ?uri dbp:writer <A> . ?uri dbp:distributor <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:writer ?a . ?uri dbp:distributor ?b . ?uri a dbo:TelevisionShow };812a3d6cf42c439cb59c16744da1932d
http://dbpedia.org/ontology/Person;;;Which TV shows distributor is <B> and developed by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:developer <A> . ?uri dbo:distributor <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:developer ?a . ?uri dbo:distributor ?b . ?uri a dbo:TelevisionShow };cb0fc7a9c56e4298acc19aa91d3d4c8e
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;Who all are starring in the movies where director of photography is <A> ?;SELECT DISTINCT ?uri where { ?x dbo:cinematography <A> . ?x dbp:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbo:cinematography ?a . ?x dbp:starring ?uri . ?x a dbo:Film };e9e11aac69384f7ea4b8193f5237bb97
http://dbpedia.org/ontology/Broadcaster;;;Who all have been judges on <A>'s shows?;SELECT DISTINCT ?uri where { ?x dbo:network <A> . ?x dbp:judges ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbo:network ?a . ?x dbp:judges ?uri . ?x a dbo:TelevisionShow };44126a7ebefe489c8d4093ec82f95ef1
http://dbpedia.org/ontology/Broadcaster;;;Who all have been presenters on shows by the <A>?;SELECT DISTINCT ?uri where { ?x dbo:channel <A> . ?x dbp:presenter ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbo:channel ?a . ?x dbp:presenter ?uri . ?x a dbo:TelevisionShow };2ac17e74901841a48f166336033061b1
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;who are starring in the movies written by <A> ?;SELECT DISTINCT ?uri where { ?x dbo:writer <A> . ?x dbo:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbo:writer ?a . ?x dbo:starring ?uri . ?x a dbo:Film };dedf58280e9d4d9ea3379626fc434dd0
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Who are the judges of the television show whose anchor is <A>?;SELECT DISTINCT ?uri where { ?x dbp:presenter <A> . ?x dbp:judges ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:presenter ?a . ?x dbp:judges ?uri . ?x a dbo:TelevisionShow };0652b6c013d14959a266fdbb14f106ab
http://dbpedia.org/ontology/ArchitecturalStructure;;;Who are the cast members of <A>?;SELECT DISTINCT ?uri where { <A> dbp:starring ?uri };select distinct ?a where { ?a dbp:starring ?uri };1df652b299e84ef4a467b353d91a9eff
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;;;Who are the characters of <A>?;SELECT DISTINCT ?uri where { <A> dbp:characters ?uri };select distinct ?a where { ?a dbp:characters ?uri };9ae7378d981c4a9ca527a177a3042a8e
http://dbpedia.org/ontology/Broadcaster;;;Who are the people which <A> has employed?;SELECT DISTINCT ?uri where { ?uri dbp:employer <A> };select distinct ?a where { ?uri dbp:employer ?a };900ef117ddb54ad0b9686cde649bc3d0
http://dbpedia.org/ontology/Person;;;Who are the shareholder of the broadcast networks whose owning company is <A>?;SELECT DISTINCT ?uri where { ?x dbo:owningCompany <A> . ?x dbp:owner ?uri . ?x a dbo:BroadcastNetwork };select distinct ?a where { ?x dbo:owningCompany ?a . ?x dbp:owner ?uri . ?x a dbo:BroadcastNetwork };105a1052c4e54d828a4f8b08aca03408
http://dbpedia.org/ontology/Film;;;Who are the spouse of the actors of <A>?;SELECT DISTINCT ?uri where { <A> dbo:starring ?x . ?x dbo:spouse ?uri };select distinct ?a where { ?a dbo:starring ?x . ?x dbo:spouse ?uri };6c664cbf0c8344ae93064a7d00fab47a
;;;Who are the stars of the movies which are distributed by <A> ?;SELECT DISTINCT ?uri where { ?x dbp:distributor <A> . ?x dbo:starring ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:distributor ?a . ?x dbo:starring ?uri . ?x a dbo:Film };d505d3763ec449168b961367ed3a424b
http://dbpedia.org/ontology/WrittenWork;;;Who edited <A> ?;SELECT DISTINCT ?uri where { <A> dbp:editor ?uri };select distinct ?a where { ?a dbp:editor ?uri };2e7e281583534d89b40fa6de036f5439
http://dbpedia.org/ontology/Film;;;Who edited <A> ?;SELECT DISTINCT ?uri where { <A> dbo:editing ?uri };select distinct ?a where { ?a dbo:editing ?uri };781e6cc08f044c428d77cc3790f657eb
http://dbpedia.org/ontology/TelevisionEpisode;;;Who gave guest appearances on the show which is the next episode after the <A> one?;SELECT DISTINCT ?uri where { ?x dbo:previousWork <A> . ?x dbp:guests ?uri . ?x a dbo:TelevisionEpisode };select distinct ?a where { ?x dbo:previousWork ?a . ?x dbp:guests ?uri . ?x a dbo:TelevisionEpisode };6cd5cdc40f6e4af8a04465a6699c16ea
http://dbpedia.org/ontology/Person;;;Who gave the voice for <A> ?;SELECT DISTINCT ?uri where { <A> dbo:voice ?uri };select distinct ?a where { ?a dbo:voice ?uri };48584c830439478e9272821ca6fac246
http://dbpedia.org/ontology/Band;;;Who gave the voice to the characters sculpted by <A>?;SELECT DISTINCT ?uri where { ?x dbp:creator <A> . ?x dbo:voice ?uri . ?x a dbo:FictionalCharacter };select distinct ?a where { ?x dbp:creator ?a . ?x dbo:voice ?uri . ?x a dbo:FictionalCharacter };e9737da1b4f945b39ad2ed1d09ad062b
http://dbpedia.org/ontology/MusicalArtist;;;Who has produced movies that have a <A> score?;SELECT DISTINCT ?uri where { ?x dbp:music <A> . ?x dbp:producer ?uri . ?x a dbo:Film };select distinct ?a where { ?x dbp:music ?a . ?x dbp:producer ?uri . ?x a dbo:Film };26c1a1fbf2d44a43b2365a9bc2ac9c5c
http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/FilmMaker110088390;;;Who have become famous by movies produced by <A>?;SELECT DISTINCT ?uri where { ?x dbp:producer <A> . ?uri dbo:knownFor ?x };select distinct ?a where { ?x dbp:producer ?a . ?uri dbo:knownFor ?x };69fee15c06f64c7eb69fdfc71e10c6d8
http://dbpedia.org/ontology/Film;;;Who is the animator of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:animator ?uri };select distinct ?a where { ?a dbp:animator ?uri };4294fa2db28d45f1933f8c4347b84964
http://dbpedia.org/ontology/MusicGenre;;;Who is the Artist of the singles whose film genre is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:genre <A> . ?x dbp:artist ?uri . ?x a dbo:Single };select distinct ?a where { ?x dbp:genre ?a . ?x dbp:artist ?uri . ?x a dbo:Single };397233307bda42d486c73b3f774b5d9d
http://dbpedia.org/ontology/TelevisionEpisode;;;Who is the executive producer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:executiveProducer ?uri };select distinct ?a where { ?a dbp:executiveProducer ?uri };d7d45064bde94687972a63ec05a2d4a6
http://dbpedia.org/ontology/Film;;;Who is the fictional character who portrayed in <A>?;SELECT DISTINCT ?uri where { ?uri dbo:portrayer <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbo:portrayer ?a . ?uri a dbo:FictionalCharacter };3938c7827542407499282f308306e854
http://dbpedia.org/ontology/Film;;;Who is the fictional character who starred in <A>?;SELECT DISTINCT ?uri where { ?uri dbo:voice <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbo:voice ?a . ?uri a dbo:FictionalCharacter };65a7bbb407e44d46825ede7581db9462
http://dbpedia.org/ontology/Person;;;Who is the fictional character whose family member is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:family <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbp:family ?a . ?uri a dbo:FictionalCharacter };7152d19cc09847a59273b9425bba8dfe
http://dbpedia.org/ontology/TelevisionEpisode;;;Who is the fictional character whose relative is <A>?;SELECT DISTINCT ?uri where { ?uri dbo:relative <A> . ?uri a dbo:FictionalCharacter };select distinct ?a where { ?uri dbo:relative ?a . ?uri a dbo:FictionalCharacter };50815a2e5ca14118b958db770c868c1e
http://dbpedia.org/ontology/Film;;;Who is the film director of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:director ?uri };select distinct ?a where { ?a dbo:director ?uri };330a20b1b264498c86abcbd8608ab422
http://dbpedia.org/ontology/Person;;;Who is the film star of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:starring ?uri };select distinct ?a where { ?a dbo:starring ?uri };f1036fdd007245499c769a21e5ecb88e
http://dbpedia.org/ontology/Film|http://dbpedia.org/ontology/ArchitecturalStructure;;;Who is the producer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:producer ?uri };select distinct ?a where { ?a dbp:producer ?uri };d15ac9a40bb143a0a3da0de817e8d832
http://dbpedia.org/ontology/Broadcaster;;;Who owns the broadcast network founded by <A>?;SELECT DISTINCT ?uri where { ?x dbo:foundedBy <A> . ?x dbp:owner ?uri . ?x a dbo:BroadcastNetwork };select distinct ?a where { ?x dbo:foundedBy ?a . ?x dbp:owner ?uri . ?x a dbo:BroadcastNetwork };1466144570d843389c2cc9e911698213
http://dbpedia.org/ontology/TelevisionShow;;;Who produced <A>?;SELECT DISTINCT ?uri where { <A> dbo:producer ?uri };select distinct ?a where { ?a dbo:producer ?uri };53a85329c96443f8b76e32e8ee53d78c
;;;Who produced the <A>?;SELECT DISTINCT ?uri where { ?uri dbo:product <A> };select distinct ?a where { ?uri dbo:product ?a };00fb7cf892ed4de0a25b3d8c04526470
;;;Who produced the TV shows for <A>?;SELECT DISTINCT ?uri where { ?x dbp:company <A> . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:company ?a . ?x dbo:producer ?uri . ?x a dbo:TelevisionShow };5e4463b5e91147819fab19c1eb738a8b
http://dbpedia.org/ontology/Actor|http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Who produces the tv series which made <A> famous?;SELECT DISTINCT ?uri where { <A> dbo:knownFor ?x . ?x dbo:producer ?uri };select distinct ?a where { ?a dbo:knownFor ?x . ?x dbo:producer ?uri };6e94b499964c49839c36fe479f49b5ce
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/TelevisionShow;;Who starred in <A> and produced <B>?;SELECT DISTINCT ?uri where { <B> dbo:executiveProducer ?uri . <A> dbp:starring ?uri };select distinct ?a, ?b where { ?b dbo:executiveProducer ?uri . ?a dbp:starring ?uri };74e6bd3b3d9f4c02948ab48ddb9851b7
http://dbpedia.org/ontology/Film;;;Who was the animator of both <A> <B>?;SELECT DISTINCT ?uri where { <A> dbp:animator ?uri . <B> dbo:animator ?uri };select distinct ?a, ?b where { ?a dbp:animator ?uri . ?b dbo:animator ?uri };13b47c5d160c4d96ad28e6814def4b42
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Person;;Who was the voice actor of <A> also gave voice to <B>?;SELECT DISTINCT ?uri where { <A> dbo:voice ?uri . <B> dbo:voice ?uri };select distinct ?a, ?b where { ?a dbo:voice ?uri . ?b dbo:voice ?uri };4e89ed7d56bd4a77bb72e76dbb6feb5c
http://dbpedia.org/ontology/TelevisionEpisode;;;Who were the producers of <A>?;SELECT DISTINCT ?uri where { <A> dbo:producer ?uri };select distinct ?a where { ?a dbo:producer ?uri };42e685f396ad4d289d05e57d384f0b3c
http://dbpedia.org/class/yago/FilmMaker110088390;;;Who wrote the mangas produced by <A>?;SELECT DISTINCT ?uri where { ?x dbp:producer <A> . ?x dbo:author ?uri . ?x a dbo:Manga };select distinct ?a where { ?x dbp:producer ?a . ?x dbo:author ?uri . ?x a dbo:Manga };08222072602a432fb36950cb1d93428a
;;;Whose wife is a presenter at <A>?;SELECT DISTINCT ?uri where { ?x dbp:presenter <A> . ?uri dbo:spouse ?x };select distinct ?a where { ?x dbp:presenter ?a . ?uri dbo:spouse ?x };812fb89fca9641a4a51e6bda1fec74ca
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/WrittenWork;;<A> and <B> is the notable work of which author?;SELECT DISTINCT ?uri where { ?uri dbp:notableworks <A> . ?uri dbp:notableworks <B> . ?uri a dbo:Writer };select distinct ?a, ?b where { ?uri dbp:notableworks ?a . ?uri dbp:notableworks ?b . ?uri a dbo:Writer };ab50944245784dce87146a8d1f1cc756
http://dbpedia.org/ontology/Film;http://dbpedia.org/ontology/WrittenWork;;<A> and <B> is written by what author?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri . <B> dbo:author ?uri };select distinct ?a, ?b where { ?a dbp:writer ?uri . ?b dbo:author ?uri };835d9ccd780342e6a7509b3ca855b1d1
http://dbpedia.org/ontology/Philosopher;;;<A> authored which book?;SELECT DISTINCT ?uri where { ?uri dbo:author <A> };select distinct ?a where { ?uri dbo:author ?a };4991e293a5df4dacb638b36ffa363faa
http://dbpedia.org/ontology/Philosopher;;;<A> has authored which books ?;SELECT DISTINCT ?uri where { ?uri dbp:author <A> . ?uri a dbo:Book };select distinct ?a where { ?uri dbp:author ?a . ?uri a dbo:Book };28cd37f0c056464ba94caaf56714d451
http://dbpedia.org/ontology/Person;;;<A> has penned books on how many matters?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:author <A> . ?x dbp:subject ?uri };select distinct ?a where { ?x dbo:author ?a . ?x dbp:subject ?uri };a20c86dfc1f64b2fb91429ef3c3c2445
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Writer;;;<A> has written about how many topics?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:author <A> . ?x dbo:nonFictionSubject ?uri };select distinct ?a where { ?x dbp:author ?a . ?x dbo:nonFictionSubject ?uri };f38d40e812a24ed08486f86b89c75ca7
http://dbpedia.org/class/yago/Editor110044879;;;<A> is editor of which magazine?;SELECT DISTINCT ?uri where { ?uri dbp:editor <A> . ?uri a dbo:Magazine };select distinct ?a where { ?uri dbp:editor ?a . ?uri a dbo:Magazine };965fd3fdc73445e6b1bddc3d141ebb3c
;;;<A> writers have been given which awards?;SELECT DISTINCT ?uri where { ?x dbp:movement <A> . ?x dbo:award ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbp:movement ?a . ?x dbo:award ?uri . ?x a dbo:Writer };0312574f280d45a89cd5147313fad0b1
http://dbpedia.org/ontology/Band;;;<A> writers have won which award?;SELECT DISTINCT ?uri where { ?x dbp:ethnicity <A> . ?x dbo:award ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbp:ethnicity ?a . ?x dbo:award ?uri . ?x a dbo:Writer };6e0f647889314bb68424848e0c6e2d13
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/WrittenWork;;Among which city where <B> played also had <A> ?;SELECT DISTINCT ?uri where { <B> dbp:place ?uri . <A> dbp:place ?uri };select distinct ?a, ?b where { ?b dbp:place ?uri . ?a dbp:place ?uri };8365e95b808d440cac8c8e713017ab1c
http://dbpedia.org/ontology/WrittenWork;;;By which university is the literary magazine named <A> published?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?uri };select distinct ?a where { ?a dbo:publisher ?uri };ef3ade53eec84b978013bf8a36b43ddd
;;;Count all the books written by an author buried in the <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:restingPlace <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:restingPlace ?a . ?uri dbo:author ?x . ?uri a dbo:Book };9615aa0561ce4e4a960d23ede56fc21a
;;;Count the number of books whose author's were born in <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:birthPlace <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbo:author ?x . ?uri a dbo:Book };e698401405e74eb89c41b846351f1ff9
http://dbpedia.org/ontology/TelevisionShow;;;Count the number of important works done by the writers of <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbo:author ?x . ?x dbo:notableWork ?uri };select distinct ?a where { ?a dbo:author ?x . ?x dbo:notableWork ?uri };e2ec831eeb1f4e64a787efc386939af6
http://dbpedia.org/ontology/Award;;;Count the total awards won by the writer who has won <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:awards <A> . ?x dbp:awards ?uri };select distinct ?a where { ?x dbp:awards ?a . ?x dbp:awards ?uri };2549956a9313466db645ee46bb1f01b8
;;;Count the writers whose work has been played in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:place <A> . ?x dbp:writer ?uri };select distinct ?a where { ?x dbp:place ?a . ?x dbp:writer ?uri };2e7ea1d1a22640afb763ba50120b3917
http://dbpedia.org/ontology/ComicsCreator;http://dbpedia.org/ontology/Person;;Did <A> create <B>?;ASK where { <B> dbp:creators <A> };select distinct ?a, ?b where { ?b dbp:creators ?a };2aec8ac28a254b8a8edbbb921aae4ef0
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879|http://dbpedia.org/ontology/ComicsCreator;http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;Did <A> write the <B>?;ASK where { <B> dbp:writers <A> };select distinct ?a, ?b where { ?b dbp:writers ?a };6ad08f71a43048129e0b566148bb3665
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879|http://dbpedia.org/ontology/ComicsCreator;;Did <B> write <A>?;ASK where { <A> dbp:writers <B> };select distinct ?a, ?b where { ?a dbp:writers ?b };364f8115122d4456bd0b8b6d9667f399
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Did <B> write the lyrics of <A>;ASK where { <A> dbp:lyrics <B> };select distinct ?a, ?b where { ?a dbp:lyrics ?b };e8cf794706634a76b62c2aaf12adf298
;;;From which countries are the people from who are an academic authority of the <A> species?;SELECT DISTINCT ?uri where { <A> dbo:binomialAuthority ?x . ?x dbo:citizenship ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbo:binomialAuthority ?x . ?x dbo:citizenship ?uri . ?x a dbo:Person };be8e6c435f1e4b00978abbd40786446f
;;;Give me all magazines whose editors live in <A>?;SELECT DISTINCT ?uri where { ?x dbo:hometown <A> . ?uri dbp:editor ?x . ?uri a dbo:Magazine };select distinct ?a where { ?x dbo:hometown ?a . ?uri dbp:editor ?x . ?uri a dbo:Magazine };cc62ecdc3a6b49c0abb8041c806f783b
;;;Give me all magazines whose founder died in <A>?;SELECT DISTINCT ?uri where { ?x dbo:deathPlace <A> . ?uri dbo:founder ?x . ?uri a dbo:Magazine };select distinct ?a where { ?x dbo:deathPlace ?a . ?uri dbo:founder ?x . ?uri a dbo:Magazine };406cb0444b7849598998845f33cc549f
http://dbpedia.org/ontology/MusicGenre;;;How many <A> books are there?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:literaryGenre <A> };select distinct ?a where { ?uri dbo:literaryGenre ?a };d0847ee1f87a43a88507df1216bc342b
;;;How many books are there whose author's tomb is in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:restingPlace <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:restingPlace ?a . ?uri dbo:author ?x . ?uri a dbo:Book };1ae78ac410444930afaf70da6b8c4492
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;;;How many books are written by the author who is famous for <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:notableWork <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:notableWork ?a . ?uri dbo:author ?x . ?uri a dbo:Book };d813efbf28c848ec9859bbc3ad45e3ea
http://dbpedia.org/ontology/Writer;;;How many books have been penned by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:author <A> . ?uri a dbo:Book };select distinct ?a where { ?uri dbo:author ?a . ?uri a dbo:Book };e7c8927b5bec41c6a09ea2319c24e65f
;;;How many different people hold authority over the members of <A> family?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:family <A> . ?x dbo:binomialAuthority ?uri };select distinct ?a where { ?x dbo:family ?a . ?x dbo:binomialAuthority ?uri };299a2517930845609e238e4349ba2e5a
http://dbpedia.org/ontology/WrittenWork;;;How many different writers have written for <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:magazine <A> . ?x dbp:author ?uri };select distinct ?a where { ?x dbp:magazine ?a . ?x dbp:author ?uri };5d24a8016b944ebd949de53d198f4823
;;;How many local authorities manage <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:gender <A> . ?x dbo:localAuthority ?uri };select distinct ?a where { ?x dbo:gender ?a . ?x dbo:localAuthority ?uri };62c64f48fb4e42cba7d5df25238d0c00
http://dbpedia.org/ontology/WrittenWork;;;How many non fiction topics does <A> deals with?;SELECT DISTINCT COUNT(?uri) where { <A> dbo:nonFictionSubject ?uri };select distinct ?a where { ?a dbo:nonFictionSubject ?uri };4a08674a7ddd496fbbc5ad26b5aed56d
;;;How many non-fiction subject are there of the books whose one of the non-fiction subject is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:nonFictionSubject <A> . ?x dbo:nonFictionSubject ?uri };select distinct ?a where { ?x dbo:nonFictionSubject ?a . ?x dbo:nonFictionSubject ?uri };110683d750084bc587eb5dd36775e6ef
http://dbpedia.org/ontology/Person;;;How many other important things have been written by the creator of <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbo:creator ?x . ?x dbo:notableWork ?uri };select distinct ?a where { ?a dbo:creator ?x . ?x dbo:notableWork ?uri };430faddac48e4969b0732a137f2dd260
http://dbpedia.org/ontology/TelevisionShow;;;How many other important work has been done by the writers <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:notableworks <A> . ?x dbo:notableWork ?uri };select distinct ?a where { ?x dbp:notableworks ?a . ?x dbo:notableWork ?uri };c527bb01402d4d4db53562c4b0cc5862
http://dbpedia.org/ontology/Publisher;;;How many people have written for <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:magazine <A> . ?x dbp:author ?uri };select distinct ?a where { ?x dbp:magazine ?a . ?x dbp:author ?uri };18c0cfe0eeb245e5be6ccbe05f916c12
http://dbpedia.org/ontology/Person;;;How many publisher have been founded by <A> citizens?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:stateOfOrigin <A> . ?uri dbo:founder ?x . ?uri a dbo:Publisher };select distinct ?a where { ?x dbo:stateOfOrigin ?a . ?uri dbo:founder ?x . ?uri a dbo:Publisher };1f1e8a30a2d348d09ee11446805e1382
http://dbpedia.org/ontology/Publisher;;;How many subjects are covered in the publications of <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:publisher <A> . ?x dbo:nonFictionSubject ?uri };select distinct ?a where { ?x dbo:publisher ?a . ?x dbo:nonFictionSubject ?uri };557e9d5fa7a8436e80e24ed1e0e80825
http://dbpedia.org/ontology/MusicGenre;;;How many subjects have been covered in <A> novels?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:literaryGenre <A> . ?x dbo:nonFictionSubject ?uri };select distinct ?a where { ?x dbo:literaryGenre ?a . ?x dbo:nonFictionSubject ?uri };7b67e23763bd4b55a7a2c6e9ad44b195
;;;How many things are written in <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:programmingLanguage <A> };select distinct ?a where { ?uri dbp:programmingLanguage ?a };79277088dda94649b2348c07d0dd17e5
;;;How many writers speak a language belonging to <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:languageFamily <A> . ?uri dbp:language ?x . ?uri a dbo:Writer };select distinct ?a where { ?x dbo:languageFamily ?a . ?uri dbp:language ?x . ?uri a dbo:Writer };92bd8bf1ae994d77a70ff9745c6690be
;;;In which companies boards do the writers of <A> belong?;SELECT DISTINCT ?uri where { <A> dbo:author ?x . ?x dbo:board ?uri };select distinct ?a where { ?a dbo:author ?x . ?x dbo:board ?uri };dc3368caf7294bbea8b07fd01859706d
;;;In which countries can i find some <A> writers?;SELECT DISTINCT ?uri where { ?x dbo:movement <A> . ?x dbo:nationality ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbo:movement ?a . ?x dbo:nationality ?uri . ?x a dbo:Writer };67b58e4d4ed94311a8d0d1ab84d2154d
http://dbpedia.org/ontology/Writer;;;In which country does the publishing house exist which was cofounded by <A>?;SELECT DISTINCT ?uri where { ?x dbo:founder <A> . ?x dbp:country ?uri . ?x a dbo:Publisher };select distinct ?a where { ?x dbo:founder ?a . ?x dbp:country ?uri . ?x a dbo:Publisher };4bd70a53db094071a29c3e999f05bee9
http://dbpedia.org/ontology/MusicalWork;;;In which language is <A> written ?;SELECT DISTINCT ?uri where { <A> dbp:language ?uri };select distinct ?a where { ?a dbp:language ?uri };61cf658e0164453f858aee18ab264e25
http://dbpedia.org/ontology/WrittenWork;;;Is <A> a book about <B>?;ASK where { <A> dbo:literaryGenre <B> };select distinct ?a, ?b where { ?a dbo:literaryGenre ?b };459dcf9d415e401787e5bfb3af170b9b
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Film;;Is <A> the narrator of <B>?;ASK where { <B> dbp:narrator <A> };select distinct ?a, ?b where { ?b dbp:narrator ?a };34eed5d543524bd6a5872d93bf79d3e7
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Film;;Is <A> the narrator of <B>?;ASK where { <B> dbp:narrator <A> };select distinct ?a, ?b where { ?b dbp:narrator ?a };6d534a6445c944a68ed033f2e18b64a2
;;;Is <A> written in <B> language?;ASK where { <A> dbp:programmingLanguage <B> };select distinct ?a, ?b where { ?a dbp:programmingLanguage ?b };3426ff612be940c48ddbf955846bbbfc
http://dbpedia.org/ontology/Person;;;Is <A> written in <B>?;ASK where { <A> dbo:programmingLanguage <B> };select distinct ?a, ?b where { ?a dbo:programmingLanguage ?b };6db524c4b72a43a788d1622f07782c39
http://dbpedia.org/ontology/Person;;;Is <A> written in <B>?;ASK where { <A> dbp:programmingLanguage <B> };select distinct ?a, ?b where { ?a dbp:programmingLanguage ?b };b60be328eefd4fc994895d7e2c04b7e6
;;;Is <B> written in <A>;ASK where { <B> dbp:programmingLanguage <A> };select distinct ?a, ?b where { ?b dbp:programmingLanguage ?a };a4af0ba8a3fe4331ac77ceb9f178ed02
http://dbpedia.org/ontology/WrittenWork;;;Is the book <A> a book about <B>?;ASK where { <A> dbo:literaryGenre <B> };select distinct ?a, ?b where { ?a dbo:literaryGenre ?b };f45f71305db04f20a4880e91502a2d7e
http://dbpedia.org/ontology/Person;;;List all binomial authority of the insects whose one of the binomial authority is <A>?;SELECT DISTINCT ?uri where { ?x dbo:binomialAuthority <A> . ?x dbo:binomialAuthority ?uri };select distinct ?a where { ?x dbo:binomialAuthority ?a . ?x dbo:binomialAuthority ?uri };2bb47e7a93f54b089d92f2822728eb97
;;;List all the parents of writers coming from the <A> ?;SELECT DISTINCT ?uri where { ?x dbp:homeTown <A> . ?x dbo:parent ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbp:homeTown ?a . ?x dbo:parent ?uri . ?x a dbo:Writer };df4a8bee85f04e6f8e60dd62c65e104b
http://dbpedia.org/ontology/ComicsCreator;;;List all the writers of the comics which has <A> as one of the writer ?;SELECT DISTINCT ?uri where { ?x dbp:writers <A> . ?x dbp:writers ?uri . ?x a dbo:Comic };select distinct ?a where { ?x dbp:writers ?a . ?x dbp:writers ?uri . ?x a dbo:Comic };8f0cd88f6b6a4041bbed6b3723281f21
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Person;;List books authored by <A> and published by <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:author <A> . ?uri dbo:publisher <B> . ?uri a dbo:Book };select distinct ?a, ?b where { ?uri dbp:author ?a . ?uri dbo:publisher ?b . ?uri a dbo:Book };dbb28edd6b1a49f384baf3d63c64a0b3
;;;List few authors whose education took place in <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:education <A> . ?uri a dbo:Writer };select distinct ?a where { ?uri dbo:education ?a . ?uri a dbo:Writer };4512ce93850d4a7d9ab2ade188c279c8
;;;List some writers which speak one of the <A>.;SELECT DISTINCT ?uri where { ?x dbo:languageFamily <A> . ?uri dbp:language ?x . ?uri a dbo:Writer };select distinct ?a where { ?x dbo:languageFamily ?a . ?uri dbp:language ?x . ?uri a dbo:Writer };d0ee48eed66c4af68f17410f1026c1be
http://dbpedia.org/ontology/Publisher;;;List the academic discipline of the journals whose publisher is <A>.;SELECT DISTINCT ?uri where { ?x dbp:publisher <A> . ?x dbo:academicDiscipline ?uri . ?x a dbo:AcademicJournal };select distinct ?a where { ?x dbp:publisher ?a . ?x dbo:academicDiscipline ?uri . ?x a dbo:AcademicJournal };829a21985c7e487794927252d84f61ea
http://dbpedia.org/ontology/Film|http://dbpedia.org/ontology/TelevisionShow;;;List the awards won by the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writer ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbp:writer ?x . ?x dbp:awards ?uri };ce0cda33ee3e45b0b88aae26a2908f48
;;;List the books by the authors buried in the <A>?;SELECT DISTINCT ?uri where { ?x dbo:restingPlace <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:restingPlace ?a . ?uri dbo:author ?x . ?uri a dbo:Book };576e5c12a2c248b8830551d0f73df4b8
;;;List the books whose authors are in <A>.;SELECT DISTINCT ?uri where { ?x dbo:birthPlace <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:birthPlace ?a . ?uri dbo:author ?x . ?uri a dbo:Book };1cf22c99abb546c680faf2a6b74be80c
;;;List the magazines published by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:publisher <A> . ?uri a dbo:Magazine };select distinct ?a where { ?uri dbo:publisher ?a . ?uri a dbo:Magazine };a1ee8ce5878d45029ef38e6d7fbb5483
http://dbpedia.org/ontology/TelevisionShow;;;List the notable works of the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writer ?x . ?x dbo:notableWork ?uri };select distinct ?a where { ?a dbp:writer ?x . ?x dbo:notableWork ?uri };aff5614125a14573982db28c91a123c8
http://dbpedia.org/ontology/WrittenWork;;;List the popular works of the author of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:author ?x . ?x dbo:notableWork ?uri };select distinct ?a where { ?a dbp:author ?x . ?x dbo:notableWork ?uri };41dbdb533af748c4968df7b35a1cb8ac
;;;List the products of the company which published <A>.;SELECT DISTINCT ?uri where { <A> dbp:publisher ?x . ?x dbp:products ?uri };select distinct ?a where { ?a dbp:publisher ?x . ?x dbp:products ?uri };af164ec109cc41a8895ca7011ca62c3f
http://dbpedia.org/ontology/Writer;;;List the series of the books whose author is <A>.;SELECT DISTINCT ?uri where { ?x dbp:author <A> . ?x dbo:series ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbp:author ?a . ?x dbo:series ?uri . ?x a dbo:Book };927cae9531214d50b42aa1950baa9486
http://dbpedia.org/ontology/Person;;;List the subjects of the books whose one of the topics is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:subject <A> . ?x dbp:subject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbp:subject ?a . ?x dbp:subject ?uri . ?x a dbo:Book };7d287a0404374984833426b01ed42751
;;;List the websites which the authors of <A> own ?;SELECT DISTINCT ?uri where { <A> dbp:author ?x . ?x dbo:owner ?uri };select distinct ?a where { ?a dbp:author ?x . ?x dbo:owner ?uri };c8685c50587445548f0ea1f4e315dab0
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;;List the writers of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writers ?uri };select distinct ?a where { ?a dbp:writers ?uri };af23ab128db046daa4567549a7470c27
http://dbpedia.org/ontology/Writer;;;Name a writer who was educated in <B> and had a son named <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:education <B> . ?uri dbo:child <A> . ?uri a dbo:Writer };select distinct ?a, ?b where { ?uri dbo:education ?b . ?uri dbo:child ?a . ?uri a dbo:Writer };6624d8c2fb524ee1ac7268162e60b577
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Person;;Name books with publisher as <B> and writer as <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:publisher <B> . ?uri dbp:author <A> . ?uri a dbo:Book };select distinct ?a, ?b where { ?uri dbo:publisher ?b . ?uri dbp:author ?a . ?uri a dbo:Book };f4f1a62862e44955aac1cdc42a0b530f
;;;Name some books by <A> speaking authors.;SELECT DISTINCT ?uri where { ?x dbp:language <A> . ?uri dbp:author ?x };select distinct ?a where { ?x dbp:language ?a . ?uri dbp:author ?x };47bc9fd86bf54061b9df63ac5d6789c1
;;;Name some local authorities of schools which have a mixed <A> system?;SELECT DISTINCT ?uri where { ?x dbo:gender <A> . ?x dbo:localAuthority ?uri . ?x a dbo:School };select distinct ?a where { ?x dbo:gender ?a . ?x dbo:localAuthority ?uri . ?x a dbo:School };a64b3098de204f9fa741346a1da0d672
http://dbpedia.org/ontology/TelevisionShow;;;Name the awards that have been given to the writer made famous for <A>?;SELECT DISTINCT ?uri where { ?x dbo:notableWork <A> . ?x dbo:award ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbo:notableWork ?a . ?x dbo:award ?uri . ?x a dbo:Writer };5ffd4aac7b004bd480d28d364aeb2aa4
http://dbpedia.org/ontology/Writer;;;NAme the emplyer for whihc <A> has worked and also written in <B> ?;SELECT DISTINCT ?uri where { <A> dbp:employer ?uri . <B> dbo:author ?uri };select distinct ?a, ?b where { ?a dbp:employer ?uri . ?b dbo:author ?uri };b1ffee719580428fa70efc72d7f54ba5
;;;Name the local authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:localAuthority ?uri };select distinct ?a where { ?a dbo:localAuthority ?uri };ef6dc0a3edb54f33bf874f7c5b9dae0a
;;;Name the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:writer ?uri };select distinct ?a where { ?a dbo:writer ?uri };984b82270182472b9d8f250fe7d3aafc
;http://dbpedia.org/ontology/WrittenWork;;Name the writer whose one of the notable work is <B> and died in <A>?;SELECT DISTINCT ?uri where { ?uri dbo:notableWork <B> . ?uri dbo:deathPlace <A> . ?uri a dbo:Writer };select distinct ?a, ?b where { ?uri dbo:notableWork ?b . ?uri dbo:deathPlace ?a . ?uri a dbo:Writer };64a685047e5d4bee91966f92474abfdf
http://dbpedia.org/ontology/Publisher;;;On how many subjects has <A> published books?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:publisher <A> . ?x dbp:subject ?uri };select distinct ?a where { ?x dbp:publisher ?a . ?x dbp:subject ?uri };61b0b02309714b1ab6e78e1d416a872f
http://dbpedia.org/ontology/WrittenWork;;;On what subjects was <A> written?;SELECT DISTINCT ?uri where { <A> dbp:subject ?uri };select distinct ?a where { ?a dbp:subject ?uri };80f74a9018ae47769a3c567eee3066b9
http://dbpedia.org/ontology/WrittenWork;;;On which subjects does the author of the novel <A> delve?;SELECT DISTINCT ?uri where { <A> dbo:nonFictionSubject ?uri };select distinct ?a where { ?a dbo:nonFictionSubject ?uri };94de863bd4184aa2a7f508889eabee26
;;;Tell me the number of writers whose works have been recorded in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:recordedIn <A> . ?x dbp:writer ?uri . ?uri a dbo:Artist };select distinct ?a where { ?x dbo:recordedIn ?a . ?x dbp:writer ?uri . ?uri a dbo:Artist };c885120c181e4448adfcbe1da45585fb
http://dbpedia.org/ontology/WrittenWork;;;The authors of <A> was influenced by whom ?;SELECT DISTINCT ?uri where { <A> dbo:author ?x . ?x dbo:influencedBy ?uri };select distinct ?a where { ?a dbo:author ?x . ?x dbo:influencedBy ?uri };39173d997c5d410fab182a0ea5ca6a78
http://dbpedia.org/ontology/Person;;;To which books <A>, an editor?;SELECT DISTINCT ?uri where { ?uri dbo:publisher <A> . ?uri a dbo:Book };select distinct ?a where { ?uri dbo:publisher ?a . ?uri a dbo:Book };58cf5b8a4f4e47bcb79a98fac51edd37
http://dbpedia.org/ontology/MusicalWork;;;To which political party does the writer of <A> belong?;SELECT DISTINCT ?uri where { <A> dbp:writer ?x . ?x dbo:party ?uri };select distinct ?a where { ?a dbp:writer ?x . ?x dbo:party ?uri };dbc169a2e4a34f00b36ca8be031fe8f5
http://dbpedia.org/ontology/WrittenWork;;;To which series does the book belong which came after the <A>?;SELECT DISTINCT ?uri where { ?x dbo:previousWork <A> . ?x dbo:series ?uri };select distinct ?a where { ?x dbo:previousWork ?a . ?x dbo:series ?uri };012275fbe2924170a2dc92fcdfb02849
http://dbpedia.org/ontology/MusicGenre;http://dbpedia.org/ontology/WrittenWork;;Was <B> a novel of the <A> genre?;ASK where { <B> dbo:literaryGenre <A> };select distinct ?a, ?b where { ?b dbo:literaryGenre ?a };da9c3c6ffbf24f4e9335cf131e3f0907
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/MusicalWork;;Was <B> written by <A>?;ASK where { <B> dbo:musicBy <A> };select distinct ?a, ?b where { ?b dbo:musicBy ?a };24ebd4641f2a4aa9a2d94e60bf9478ec
http://dbpedia.org/ontology/Film;;;What are all the prizes won by the writer of <A>?;SELECT DISTINCT ?uri where { <A> dbo:writer ?x . ?x dbo:award ?uri };select distinct ?a where { ?a dbo:writer ?x . ?x dbo:award ?uri };9049b588d47b4566b827b69d457b3725
http://dbpedia.org/ontology/TelevisionShow;;;What are other famous works of the writer who created <A>?;SELECT DISTINCT ?uri where { ?x dbp:notableworks <A> . ?x dbo:notableWork ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbp:notableworks ?a . ?x dbo:notableWork ?uri . ?x a dbo:Writer };2c23a7087748489bacf1940fc992f121
http://dbpedia.org/ontology/MusicalWork;;;What are some <A> kind of Books?;SELECT DISTINCT ?uri where { ?uri dbo:literaryGenre <A> };select distinct ?a where { ?uri dbo:literaryGenre ?a };c593b3d2dd42455e9a67d0aa2e905027
http://dbpedia.org/ontology/Person;;;What are some books whose cover illustration is designed by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:coverArtist <A> . ?uri a dbo:Book };select distinct ?a where { ?uri dbp:coverArtist ?a . ?uri a dbo:Book };0003a5d7358848dda07272e9779abb3b
http://dbpedia.org/ontology/TelevisionShow;;;What are some famous works of the writer of <A>?;SELECT DISTINCT ?uri where { <A> dbp:writer ?x . ?x dbp:notableworks ?uri };select distinct ?a where { ?a dbp:writer ?x . ?x dbp:notableworks ?uri };d93543518a8d4a69b6f540f4be499a28
http://dbpedia.org/ontology/ArchitecturalStructure;;;What are some magazines whose publishers are themselves <A> members?;SELECT DISTINCT ?uri where { ?x dbo:award <A> . ?uri dbo:publisher ?x . ?uri a dbo:Magazine };select distinct ?a where { ?x dbo:award ?a . ?uri dbo:publisher ?x . ?uri a dbo:Magazine };b9b68b1ab73f47e48473bbb74c50ba1a
http://dbpedia.org/ontology/MusicGenre;;;What are some non fiction subjects dealt with in <A> novels?;SELECT DISTINCT ?uri where { ?x dbo:literaryGenre <A> . ?x dbo:nonFictionSubject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbo:literaryGenre ?a . ?x dbo:nonFictionSubject ?uri . ?x a dbo:Book };42fdd268b8604dadbb164492ae3450eb
;;;What are the awards won by the person who is an authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:binomialAuthority ?x . ?x dbp:awards ?uri . ?x a dbo:Person };select distinct ?a where { ?a dbp:binomialAuthority ?x . ?x dbp:awards ?uri . ?x a dbo:Person };6ac4a7bdfb6c4d5fb1e936da0dd3818f
;;;What are the binomial authority of <A>?;SELECT DISTINCT ?uri where { <A> dbo:binomialAuthority ?uri };select distinct ?a where { ?a dbo:binomialAuthority ?uri };4f3bdd919e6d4880be68979047b407dc
;;;What are the books written by authors who died in <A>?;SELECT DISTINCT ?uri where { ?x dbo:restingPlace <A> . ?uri dbp:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:restingPlace ?a . ?uri dbp:author ?x . ?uri a dbo:Book };14c91859f31f43e99bc47c8be8f02f16
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;;;What are the books written by the the person who made the <A>?;SELECT DISTINCT ?uri where { ?x dbo:notableWork <A> . ?uri dbo:author ?x . ?uri a dbo:Book };select distinct ?a where { ?x dbo:notableWork ?a . ?uri dbo:author ?x . ?uri a dbo:Book };7881083538c54de4a888d1e28df7238c
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Writer;;;What are the non-fiction topics in the books whose authors is <A>?;SELECT DISTINCT ?uri where { ?x dbp:author <A> . ?x dbo:nonFictionSubject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbp:author ?a . ?x dbo:nonFictionSubject ?uri . ?x a dbo:Book };fa79374cc5624b72992b576863b1b839
;;;What are the products of the company who published <A> ?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?x . ?x dbo:product ?uri . ?x a dbo:Company };select distinct ?a where { ?a dbo:publisher ?x . ?x dbo:product ?uri . ?x a dbo:Company };6eae72f3017e4cdb932b020311f66a93
http://dbpedia.org/ontology/TelevisionShow;;;What awards have been given to the writers of <A>?;SELECT DISTINCT ?uri where { ?x dbp:notableworks <A> . ?x dbo:award ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbp:notableworks ?a . ?x dbo:award ?uri . ?x a dbo:Writer };249281ef2b90405aba4523fe74c3f855
;;;What famous work is derived from the one whose lyrics are written by <A>?;SELECT DISTINCT ?uri where { ?x dbo:lyrics <A> . ?x dbo:basedOn ?uri };select distinct ?a where { ?x dbo:lyrics ?a . ?x dbo:basedOn ?uri };6afc2e0ce3f244ce93a5bed1fab03623
http://dbpedia.org/ontology/Person;;;What has <A> written his books about?;SELECT DISTINCT ?uri where { ?x dbo:author <A> . ?x dbp:subject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbo:author ?a . ?x dbp:subject ?uri . ?x a dbo:Book };68843601f12e4f76a157d8e77cdd18b0
http://dbpedia.org/ontology/Philosopher;;;What is the academic journal whose editor is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:editor <A> . ?uri a dbo:AcademicJournal };select distinct ?a where { ?uri dbp:editor ?a . ?uri a dbo:AcademicJournal };dd004ede34464a0f82faca6742a25184
http://dbpedia.org/ontology/WrittenWork;;;What is the alma mater of the author of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:author ?x . ?x dbp:almaMater ?uri };select distinct ?a where { ?a dbo:author ?x . ?x dbp:almaMater ?uri };02d8c986d51743f79aadb85498ab95eb
;;;What is the death location of the scientist who is the known authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:binomialAuthority ?x . ?x dbo:deathPlace ?uri . ?x a dbo:Scientist };select distinct ?a where { ?a dbo:binomialAuthority ?x . ?x dbo:deathPlace ?uri . ?x a dbo:Scientist };0af37d7da2d44dad82fdc851c7e9c38f
;;;What is the genre of <A>?;SELECT DISTINCT ?uri where { <A> dbp:genre ?uri };select distinct ?a where { ?a dbp:genre ?uri };bed9c24aa6cd405ab16165885735645b
;;;What is the local authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:localAuthority ?uri };select distinct ?a where { ?a dbo:localAuthority ?uri };91921f98a78148b1b74c79a5bd598e40
;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;What is the local authority of the <A> is also the birth palce of <B> ?;SELECT DISTINCT ?uri where { <A> dbo:localAuthority ?uri . <B> dbp:birthPlace ?uri };select distinct ?a, ?b where { ?a dbo:localAuthority ?uri . ?b dbp:birthPlace ?uri };c7974233b0ce42da82267d5081901e7d
http://dbpedia.org/ontology/Person;;;What is the local authority of the <B> and place of birth of the <A> ?;SELECT DISTINCT ?uri where { <B> dbo:localAuthority ?uri . <A> dbp:placeOfBirth ?uri };select distinct ?a, ?b where { ?b dbo:localAuthority ?uri . ?a dbp:placeOfBirth ?uri };d4b1587fce7046aabe7c9717457c7894
http://dbpedia.org/ontology/MusicalArtist;;;What is the magazine which have been founded by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:founder <A> . ?uri a dbo:Magazine };select distinct ?a where { ?uri dbo:founder ?a . ?uri a dbo:Magazine };b8eaafc1020c44c7b96f49241aafe8a4
;;;What is the nationality of the entomologist who is a renowned authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:binomialAuthority ?x . ?x dbo:citizenship ?uri . ?x a dbo:Entomologist };select distinct ?a where { ?a dbo:binomialAuthority ?x . ?x dbo:citizenship ?uri . ?x a dbo:Entomologist };94f2d3a65f0a4e228e6ea8f5ff7a54b0
http://dbpedia.org/ontology/WrittenWork;;;What is the publisher of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?uri };select distinct ?a where { ?a dbo:publisher ?uri };1cb857cf079c4860a7e33220a4e6ff29
;;;What is the religion of the academic authority on <A>?;SELECT DISTINCT ?uri where { <A> dbo:binomialAuthority ?x . ?x dbp:veneratedIn ?uri };select distinct ?a where { ?a dbo:binomialAuthority ?x . ?x dbp:veneratedIn ?uri };aaded2628d52480a81d952c6157fbd13
http://dbpedia.org/ontology/WrittenWork;;;What is the series of the book which is a subsequent work of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:subsequentWork ?x . ?x dbo:series ?uri . ?x a dbo:Book };select distinct ?a where { ?a dbo:subsequentWork ?x . ?x dbo:series ?uri . ?x a dbo:Book };b2ca768fe1b54426a2d0413c0f7c42f0
http://dbpedia.org/ontology/WrittenWork;;;What is the subject of the book which preceded Sagan's <A>?;SELECT DISTINCT ?uri where { <A> dbo:previousWork ?x . ?x dbp:subject ?uri };select distinct ?a where { ?a dbo:previousWork ?x . ?x dbp:subject ?uri };4ef62e8a57af45229de3bc04ae17a70b
;;;What is the total number of other non-fiction subject of the books whose one of the subject is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:nonFictionSubject <A> . ?x dbo:nonFictionSubject ?uri };select distinct ?a where { ?x dbo:nonFictionSubject ?a . ?x dbo:nonFictionSubject ?uri };9c14d984d9b44eda8acb73656552d3dc
;;;What is the total number of POD of the writers whose birth place is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:birthPlace <A> . ?x dbo:deathPlace ?uri . ?uri a dbo:Location };select distinct ?a where { ?x dbp:birthPlace ?a . ?x dbo:deathPlace ?uri . ?uri a dbo:Location };241bdbc0cd074cc2963509e47a0bc547
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/WrittenWork;;What magazine is <A> known for which has <B> as publisher ?;SELECT DISTINCT ?uri where { <A> dbo:knownFor ?uri . <B> dbo:publisher ?uri };select distinct ?a, ?b where { ?a dbo:knownFor ?uri . ?b dbo:publisher ?uri };5cf1e1c8ee184ab0aa42a8628980116b
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;What magazine published <A> and is the employer of <B>?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?uri . <B> dbo:employer ?uri };select distinct ?a, ?b where { ?a dbo:publisher ?uri . ?b dbo:employer ?uri };713d533b1d2a4dc08c7ccfe24d7dd58b
http://dbpedia.org/ontology/Publisher;;;What non fiction subjects are covered in books by <A> publishers?;SELECT DISTINCT ?uri where { ?x dbo:publisher <A> . ?x dbo:nonFictionSubject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbo:publisher ?a . ?x dbo:nonFictionSubject ?uri . ?x a dbo:Book };44f0efbc081546a0be93ab03cbed3e68
http://dbpedia.org/ontology/MusicGenre;;;What novels are belong to the genre of <A>?;SELECT DISTINCT ?uri where { ?uri dbo:literaryGenre <A> };select distinct ?a where { ?uri dbo:literaryGenre ?a };55717a4e06d940f9a6e2d0fee2b4709d
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Film;;What show has writing of <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbp:writer <A> . ?uri dbp:writer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:writer ?a . ?uri dbp:writer ?b . ?uri a dbo:TelevisionShow };dd8f04e29567432aa66d4872d3c8967d
http://dbpedia.org/ontology/WrittenWork;;;What was the book that lead to Sagan's <A>, about?;SELECT DISTINCT ?uri where { ?x dbo:subsequentWork <A> . ?x dbp:subject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbo:subsequentWork ?a . ?x dbp:subject ?uri . ?x a dbo:Book };d8d0571b353e4b028d618c08d2643923
;;;What writers have nationality as <A>?;SELECT DISTINCT ?uri where { ?uri dbp:nationality <A> . ?uri a dbo:Writer };select distinct ?a where { ?uri dbp:nationality ?a . ?uri a dbo:Writer };902aa5708f8b44108380a95c01c45686
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/TelevisionShow;;Whay common comic is written by <A> and narrated by <B> ?;SELECT DISTINCT ?uri where { <A> dbp:author ?uri . <B> dbp:narrated ?uri };select distinct ?a, ?b where { ?a dbp:author ?uri . ?b dbp:narrated ?uri };b08465bc7133422a9c0a2a1e3ee38e99
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390;;;Where did the plays written by <A> take place?;SELECT DISTINCT ?uri where { ?x dbp:writer <A> . ?x dbp:place ?uri . ?x a dbo:Play };select distinct ?a where { ?x dbp:writer ?a . ?x dbp:place ?uri . ?x a dbo:Play };0a0eaf434b7342f1a47f9e61c8093efe
http://dbpedia.org/ontology/WrittenWork;;;Where does the publisher of <A> live?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?x . ?x dbp:residence ?uri };select distinct ?a where { ?a dbo:publisher ?x . ?x dbp:residence ?uri };c830276732964533b201803bc7dbe949
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/Person;;Which writer has childrens named <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbp:children <B> . ?uri dbp:children <A> . ?uri a dbo:Writer };select distinct ?a, ?b where { ?uri dbp:children ?b . ?uri dbp:children ?a . ?uri a dbo:Writer };62dd4ce12cbb45e781aca55e4b3b29bd
http://dbpedia.org/ontology/Philosopher;;;Which <B> journal has compiler as <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:editor <A> . ?uri dbp:discipline <B> . ?uri a dbo:AcademicJournal };select distinct ?a, ?b where { ?uri dbp:editor ?a . ?uri dbp:discipline ?b . ?uri a dbo:AcademicJournal };01710e1b53c94aaf85bd50e8344efefa
http://dbpedia.org/ontology/Writer;http://dbpedia.org/ontology/WrittenWork;;Which author inspired <A>, and wrote <B>?;SELECT DISTINCT ?uri where { <B> dbp:author ?uri . <A> dbp:influences ?uri };select distinct ?a, ?b where { ?b dbp:author ?uri . ?a dbp:influences ?uri };1a98e56e3b3844d28ca9cb861532a949
http://dbpedia.org/ontology/Film;;;Which awards did the writer of <A> win ?;SELECT DISTINCT ?uri where { <A> dbo:writer ?x . ?x dbp:awards ?uri };select distinct ?a where { ?a dbo:writer ?x . ?x dbp:awards ?uri };a0f6a9ff04114339bf934c012ed2f0b2
http://dbpedia.org/ontology/TelevisionShow;;;Which awards did the writer, who is the creator of <A>, won ?;SELECT DISTINCT ?uri where { <A> dbp:creator ?x . ?x dbp:awards ?uri . ?x a dbo:Writer };select distinct ?a where { ?a dbp:creator ?x . ?x dbp:awards ?uri . ?x a dbo:Writer };4b03656d18b848c5830c2015fa4a9cdd
;http://dbpedia.org/ontology/ArchitecturalStructure;;Which borough of the <B> is also the local authority of <A> ?;SELECT DISTINCT ?uri where { <B> dbp:borough ?uri . <A> dbo:localAuthority ?uri };select distinct ?a, ?b where { ?b dbp:borough ?uri . ?a dbo:localAuthority ?uri };3b75c4aabe0748088571682a0168ab4e
;;;Which ceremonial County of the <A> is also the local authority of the <B> ?;SELECT DISTINCT ?uri where { <A> dbo:ceremonialCounty ?uri . <B> dbo:localAuthority ?uri };select distinct ?a, ?b where { ?a dbo:ceremonialCounty ?uri . ?b dbo:localAuthority ?uri };7c7114c2dd014b12b2a19352d908b472
;;;Which ceremonial County of the <A> is also the local authority of the <B>?;SELECT DISTINCT ?uri where { <A> dbo:ceremonialCounty ?uri . <B> dbo:localAuthority ?uri };select distinct ?a, ?b where { ?a dbo:ceremonialCounty ?uri . ?b dbo:localAuthority ?uri };bf75ca76a0bf455abcdc7d52f38f4686
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;;Which companies published <A>?;SELECT DISTINCT ?uri where { <A> dbp:publisher ?uri };select distinct ?a where { ?a dbp:publisher ?uri };1ef8cd8959f34ef2b16979eec3a75888
;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;Which distributer of <A> is also the publisher of the <B> ?;SELECT DISTINCT ?uri where { <A> dbo:distributor ?uri . <B> dbp:publisher ?uri };select distinct ?a, ?b where { ?a dbo:distributor ?uri . ?b dbp:publisher ?uri };b25e6105c24d44dc8ef492e2edf0b163
http://dbpedia.org/ontology/Person;;;Which domain's journals did <A> edit?;SELECT DISTINCT ?uri where { ?x dbp:editor <A> . ?x dbp:discipline ?uri . ?x a dbo:AcademicJournal };select distinct ?a where { ?x dbp:editor ?a . ?x dbp:discipline ?uri . ?x a dbo:AcademicJournal };151691666bec45238d4879d05f239dd4
http://dbpedia.org/ontology/Writer;;;Which employer of <A> has alsoe written <B> ?;SELECT DISTINCT ?uri where { <A> dbp:employer ?uri . <B> dbo:author ?uri };select distinct ?a, ?b where { ?a dbp:employer ?uri . ?b dbo:author ?uri };0d8127d7d9f94ef6ad941ee30b14e54c
http://dbpedia.org/ontology/Photographer;http://dbpedia.org/ontology/Person;;Which famous writer was married to <A> and had a son named <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:spouse <A> . ?uri dbo:child <B> . ?uri a dbo:Writer };select distinct ?a, ?b where { ?uri dbo:spouse ?a . ?uri dbo:child ?b . ?uri a dbo:Writer };e2c84e16da1c4ada900d8e9932d4c088
http://dbpedia.org/ontology/Person;;;Which field's journals are edited by <A>?;SELECT DISTINCT ?uri where { ?x dbo:editor <A> . ?x dbp:discipline ?uri . ?x a dbo:AcademicJournal };select distinct ?a where { ?x dbo:editor ?a . ?x dbp:discipline ?uri . ?x a dbo:AcademicJournal };a44e98fa4c1e4f79b3c341844a6db478
;;;Which games publishers are located in <A>?;SELECT DISTINCT ?uri where { ?x dbo:location <A> . ?uri dbo:publisher ?x };select distinct ?a where { ?x dbo:location ?a . ?uri dbo:publisher ?x };10f14cccfbd949feb78ff964c2f44eb9
http://dbpedia.org/ontology/Publisher;;;Which genre of books are published by <A>?;SELECT DISTINCT ?uri where { ?x dbp:publisher <A> . ?x dbp:subject ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbp:publisher ?a . ?x dbp:subject ?uri . ?x a dbo:Book };246e38b975c94fdbbbe94ec51f1540eb
http://dbpedia.org/ontology/WrittenWork;;;Which genre of books does the writer of <A> write?;SELECT DISTINCT ?uri where { <A> dbp:author ?x . ?x dbo:genre ?uri };select distinct ?a where { ?a dbp:author ?x . ?x dbo:genre ?uri };e0d5791e431e4dfaa75b9ae5077f76f6
http://dbpedia.org/ontology/MusicGenre;;;Which house has published books about <A>?;SELECT DISTINCT ?uri where { ?x dbo:nonFictionSubject <A> . ?x dbo:publisher ?uri . ?x a dbo:Book };select distinct ?a where { ?x dbo:nonFictionSubject ?a . ?x dbo:publisher ?uri . ?x a dbo:Book };aa8ca34e4003474990f876a54b184d6b
http://dbpedia.org/ontology/Person;;;Which local authority of <B> is the palce of burial of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:placeOfBurial ?uri . <B> dbo:localAuthority ?uri };select distinct ?a, ?b where { ?a dbp:placeOfBurial ?uri . ?b dbo:localAuthority ?uri };9e0dd9094d6b42b2ade24c563d35c3db
http://dbpedia.org/class/yago/Editor110044879;;;Which magazine has publisher as <A>?;SELECT DISTINCT ?uri where { ?uri dbo:publisher <A> . ?uri a dbo:Magazine };select distinct ?a where { ?uri dbo:publisher ?a . ?uri a dbo:Magazine };da9e64c20e50473fb7df93281a4a2d44
http://dbpedia.org/class/yago/Entertainer109616922;;;Which magazine's editor is married to <A>?;SELECT DISTINCT ?uri where { ?x dbp:spouse <A> . ?uri dbp:editor ?x . ?uri a dbo:Magazine };select distinct ?a where { ?x dbp:spouse ?a . ?uri dbp:editor ?x . ?uri a dbo:Magazine };efe2cdcf9bb3460e9f13067772d9e62f
http://dbpedia.org/ontology/ArchitecturalStructure;;;Which magazine's editor's official residence is <A>?;SELECT DISTINCT ?uri where { ?x dbo:residence <A> . ?uri dbp:editor ?x . ?uri a dbo:Magazine };select distinct ?a where { ?x dbo:residence ?a . ?uri dbp:editor ?x . ?uri a dbo:Magazine };a869f86cad31408eb7ce2f7ec9cc6fad
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Editor110044879;;Which magazine's publisher is <B> and founded by <A>?;SELECT DISTINCT ?uri where { ?uri dbo:publisher <B> . ?uri dbo:founder <A> . ?uri a dbo:Magazine };select distinct ?a, ?b where { ?uri dbo:publisher ?b . ?uri dbo:founder ?a . ?uri a dbo:Magazine };5dcd0eb818614883b22111575756bd54
http://dbpedia.org/class/yago/Editor110044879;;;Which magazines were founded by <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:founder <A> . ?uri a dbo:Magazine };select distinct ?a where { ?uri dbo:founder ?a . ?uri a dbo:Magazine };fe3de671ec2f4322995f78f9bb33d11a
;http://dbpedia.org/ontology/Band;;Which newspaper owned by <B> is published in <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:language <A> . ?uri dbp:owners <B> . ?uri a dbo:Newspaper };select distinct ?a, ?b where { ?uri dbp:language ?a . ?uri dbp:owners ?b . ?uri a dbo:Newspaper };d06c3f86937f45449b1e81e9448f48ed
http://dbpedia.org/ontology/Person;;;Which novel was published by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:publisher <A> };select distinct ?a where { ?uri dbp:publisher ?a };baa53040546c4b7485dd8c3b4ecd311e
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/TelevisionShow;;Which person naratted <B> and also the writer of <A> ?;SELECT DISTINCT ?uri where { <B> dbp:narrated ?uri . <A> dbp:writers ?uri };select distinct ?a, ?b where { ?b dbp:narrated ?uri . ?a dbp:writers ?uri };c453823ead1c41b19be3ef0d12dffbcf
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/Person;;Which publisher of <A> is also the university for which <B> plays for ?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?uri . <B> dbo:team ?uri };select distinct ?a, ?b where { ?a dbo:publisher ?uri . ?b dbo:team ?uri };cc91a60484e342e48d63ac373d934455
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/WrittenWork;;Which publisher of <B> is also known for <A> ?;SELECT DISTINCT ?uri where { <B> dbo:publisher ?uri . <A> dbo:knownFor ?uri };select distinct ?a, ?b where { ?b dbo:publisher ?uri . ?a dbo:knownFor ?uri };fc2b57a997ea496fa59b59645c999611
http://dbpedia.org/ontology/Writer;;;Which writer is famous for works written by <A>?;SELECT DISTINCT ?uri where { ?x dbp:writers <A> . ?uri dbo:notableWork ?x };select distinct ?a where { ?x dbp:writers ?a . ?uri dbo:notableWork ?x };536fa92bfb0c4a26bdd1546cbbbc9030
;http://dbpedia.org/ontology/WrittenWork;;Which writer of <A> is also the author of <B> ?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri . <B> dbo:author ?uri };select distinct ?a, ?b where { ?a dbp:writer ?uri . ?b dbo:author ?uri };64cb26ab6c624d9daee385d3e86ed7c4
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/WrittenWork;;Which writer of <B> also extended the work of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:basedOn ?uri . <B> dbo:author ?uri };select distinct ?a, ?b where { ?a dbo:basedOn ?uri . ?b dbo:author ?uri };e1bec9b2a77e46689d40931d5c9ecd63
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;Which writer of <B> is also the writer of <A> ?;SELECT DISTINCT ?uri where { <B> dbp:writers ?uri . <A> dbp:author ?uri };select distinct ?a, ?b where { ?b dbp:writers ?uri . ?a dbp:author ?uri };afccda799b6b41138bb5203359ad1618
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;Which writer of <B> is also the writer of <A> ?;SELECT DISTINCT ?uri where { <B> dbo:writer ?uri . <A> dbp:writer ?uri };select distinct ?a, ?b where { ?b dbo:writer ?uri . ?a dbp:writer ?uri };edd76a1bcc4943bd98a488f2a226464f
;http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;;Which writer of the <B> is also the writer of <A> ?;SELECT DISTINCT ?uri where { <B> dbp:writers ?uri . <A> dbo:writer ?uri };select distinct ?a, ?b where { ?b dbp:writers ?uri . ?a dbo:writer ?uri };8eea4bb7e4f9442a8153aa8ae835ffeb
http://dbpedia.org/ontology/Person;;;Who acted in the work written by <A>?;SELECT DISTINCT ?uri where { ?x dbp:writer <A> . ?x dbp:starring ?uri . ?x a dbo:Work };select distinct ?a where { ?x dbp:writer ?a . ?x dbp:starring ?uri . ?x a dbo:Work };ffdb4d5b27464d26bc824dced4615e8c
;;;Who are some authoritative persons on the matter of <A>?;SELECT DISTINCT ?uri where { <A> dbo:binomialAuthority ?uri };select distinct ?a where { ?a dbo:binomialAuthority ?uri };b6ebb2f75c0a40edb2c5f55a8490d32f
;;;Who are the local authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:localAuthority ?uri };select distinct ?a where { ?a dbo:localAuthority ?uri };5b08973e5ea1470fb3ce5ac04de8c3d6
;;;Who are the parents of writers born and bred in <A>?;SELECT DISTINCT ?uri where { ?x dbp:homeTown <A> . ?x dbo:parent ?uri . ?x a dbo:Writer };select distinct ?a where { ?x dbp:homeTown ?a . ?x dbo:parent ?uri . ?x a dbo:Writer };ea111f49ee134bee8e906c9bab84430f
http://dbpedia.org/ontology/WrittenWork;;;Who are the people who influenced the writers of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:author ?x . ?x dbo:influenced ?uri };select distinct ?a where { ?a dbo:author ?x . ?x dbo:influenced ?uri };403c3d0a80c9462f9baf9fbe7edcbff0
;;;Who are the writers of <A>?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri };select distinct ?a where { ?a dbp:writer ?uri };49882217618b4878acdbf10713ec47c8
http://dbpedia.org/ontology/Person;;;Who authored the work illustrated by <A>?;SELECT DISTINCT ?uri where { ?x dbo:illustrator <A> . ?x dbp:author ?uri };select distinct ?a where { ?x dbo:illustrator ?a . ?x dbp:author ?uri };2bc92d2e97e4487786a07b6f8ae592b4
http://dbpedia.org/ontology/WrittenWork;;;Who authored the works published in the <A> Magazine?;SELECT DISTINCT ?uri where { ?x dbp:magazine <A> . ?x dbp:author ?uri };select distinct ?a where { ?x dbp:magazine ?a . ?x dbp:author ?uri };847f6bf7556844018c82cace3485a7a9
;;;Who has authored books published by the <A>?;SELECT DISTINCT ?uri where { ?x dbo:publisher <A> . ?x dbo:author ?uri . ?x a dbo:WrittenWork };select distinct ?a where { ?x dbo:publisher ?a . ?x dbo:author ?uri . ?x a dbo:WrittenWork };d4566c91a3a1479e8ed3152f7892af27
http://dbpedia.org/ontology/Publisher;;;Who has written works found in the <A>?;SELECT DISTINCT ?uri where { ?x dbp:magazine <A> . ?x dbp:author ?uri };select distinct ?a where { ?x dbp:magazine ?a . ?x dbp:author ?uri };a45050c81a4d44f28d5f4050ae9db959
http://dbpedia.org/ontology/Film;;;Who influenced the author of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:writer ?x . ?x dbp:influences ?uri };select distinct ?a where { ?a dbo:writer ?x . ?x dbp:influences ?uri };6a768d256a514c93b3a1e2afa6908be3
;;;Who is renowned for <A> and poem of <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:notableworks <A> . ?uri dbp:notableworks <B> };select distinct ?a, ?b where { ?uri dbp:notableworks ?a . ?uri dbp:notableworks ?b };91316e105d274bdbae3927a547e2020a
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;;Who is the author of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:author ?uri };select distinct ?a where { ?a dbo:author ?uri };1aee4c637a91415f9d690c4c5315ded9
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;;Who is the author of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:author ?uri };select distinct ?a where { ?a dbp:author ?uri };3c2822d238f74e5d8723e577709dbc0d
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;Who is the author of <B> is also the author of <A> ?;SELECT DISTINCT ?uri where { <B> dbp:author ?uri . <A> dbo:author ?uri };select distinct ?a, ?b where { ?b dbp:author ?uri . ?a dbo:author ?uri };7788c912b6fb4457b27be58ee6f63052
;;;Who is the authority of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:authority ?uri };select distinct ?a where { ?a dbo:authority ?uri };57ab787a271f4c28b2a0dca69d5e9068
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/WrittenWork;;Who is the compiler of <B> whose prime minister is also <A> ?;SELECT DISTINCT ?uri where { <B> dbp:editor ?uri . <A> dbp:primeminister ?uri };select distinct ?a, ?b where { ?b dbp:editor ?uri . ?a dbp:primeminister ?uri };30f137f544404a14b30465f5c542a71c
http://dbpedia.org/ontology/WrittenWork;;;Who is the editor of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:editor ?uri };select distinct ?a where { ?a dbo:editor ?uri };3bcdc25b65614b0487c429348217ea4b
http://dbpedia.org/ontology/Person;;;Who is the father of <A> and is also a writer?;SELECT DISTINCT ?uri where { ?uri dbo:child <A> . ?uri a dbo:Writer };select distinct ?a where { ?uri dbo:child ?a . ?uri a dbo:Writer };ab3856e5604443d1967a40d89f070cc9
http://dbpedia.org/ontology/WrittenWork;;;Who is the publisher of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:publisher ?uri };select distinct ?a where { ?a dbo:publisher ?uri };738238521e7e47f79c03ba81880544ce
http://dbpedia.org/ontology/Person;;;Who is the publisher of the comic, one of whose authors is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:writers <A> . ?x dbp:publisher ?uri . ?x a dbo:Comic };select distinct ?a where { ?x dbp:writers ?a . ?x dbp:publisher ?uri . ?x a dbo:Comic };56360270525d4a54a2201b9a4d1f5f55
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/ontology/WrittenWork;;;Who is the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writers ?uri };select distinct ?a where { ?a dbp:writers ?uri };c365bc2a449849d4999e1836c37e7e20
;;;Who is the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:writer ?uri };select distinct ?a where { ?a dbo:writer ?uri };ec1040a967d34f71a0082b96d8a3a4a1
http://dbpedia.org/ontology/WrittenWork;;;Who is the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri };select distinct ?a where { ?a dbp:writer ?uri };0b508a68bf6f41969a26b3a4de2c0af7
http://dbpedia.org/ontology/MusicalWork;;;Who is the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri };select distinct ?a where { ?a dbp:writer ?uri };84e39f9dfd9b421eaede863a68c7d3dd
http://dbpedia.org/ontology/TelevisionShow;http://dbpedia.org/ontology/TelevisionShow;;Who is the writer of the <A> and <B> ?;SELECT DISTINCT ?uri where { <A> dbo:writer ?uri . <B> dbo:writer ?uri };select distinct ?a, ?b where { ?a dbo:writer ?uri . ?b dbo:writer ?uri };6abff67222f640f98134a1d608370fc0
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/WrittenWork;;Who is the writer with notable works like <B> and <A>?;SELECT DISTINCT ?uri where { ?uri dbo:notableWork <B> . ?uri dbo:notableWork <A> . ?uri a dbo:Writer };select distinct ?a, ?b where { ?uri dbo:notableWork ?b . ?uri dbo:notableWork ?a . ?uri a dbo:Writer };7cf3cea4cd174416bb524f55c19cdcf9
http://dbpedia.org/ontology/Person;;;Who owns the websites for which <A> writes?;SELECT DISTINCT ?uri where { ?x dbo:author <A> . ?x dbo:owner ?uri };select distinct ?a where { ?x dbo:author ?a . ?x dbo:owner ?uri };0d41f404ff594266aac5f28f38fdb49f
;;;Who was the editor of the newspaper owned by the the <A>?;SELECT DISTINCT ?uri where { ?x dbp:owners <A> . ?x dbp:editor ?uri . ?x a dbo:Newspaper };select distinct ?a where { ?x dbp:owners ?a . ?x dbp:editor ?uri . ?x a dbo:Newspaper };68d4d257dad14afa9f33b32b9f8f06cc
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/WrittenWork;;Who was the prime minister of <A> and also the editor of <B> ?;SELECT DISTINCT ?uri where { <A> dbp:primeminister ?uri . <B> dbp:editor ?uri };select distinct ?a, ?b where { ?a dbp:primeminister ?uri . ?b dbp:editor ?uri };4b8c7926f42b4c87ab22e1d6116e4c50
http://dbpedia.org/ontology/WrittenWork;;;Who was the writer of the novel <A>?;SELECT DISTINCT ?uri where { ?uri dbp:notableworks <A> . ?uri a dbo:Writer };select distinct ?a where { ?uri dbp:notableworks ?a . ?uri a dbo:Writer };e52302c32d6440dba926e0d3ed0f97f9
http://dbpedia.org/ontology/MusicalWork;;;Who wrote <A> ?;SELECT DISTINCT ?uri where { <A> dbo:author ?uri };select distinct ?a where { ?a dbo:author ?uri };b25f5f59b6e44ff28e90122b0cd42a0f
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/Film;;Who wrote <A> and <B>?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri . <B> dbo:writer ?uri };select distinct ?a, ?b where { ?a dbp:writer ?uri . ?b dbo:writer ?uri };e4faeda0920e4c5ba42aed906478d386
http://dbpedia.org/ontology/WrittenWork;;;Who wrote <A>?;SELECT DISTINCT ?uri where { <A> dbo:author ?uri };select distinct ?a where { ?a dbo:author ?uri };5cc36b5f5baf40ee961a155b20d24163
http://dbpedia.org/ontology/MusicalWork;;;Who wrote <A>?;SELECT DISTINCT ?uri where { <A> dbo:musicBy ?uri };select distinct ?a where { ?a dbo:musicBy ?uri };c6d5d4c7a5fb417ba8654ec416c2d263
http://dbpedia.org/ontology/TelevisionShow|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/WrittenWork;;;Who wrote <A>?;SELECT DISTINCT ?uri where { <A> dbp:author ?uri };select distinct ?a where { ?a dbp:author ?uri };3e54cd98e79d4fa6b3b2dc7f2674c5d8
;;;Who wrote <A>?;SELECT DISTINCT ?uri where { <A> dbp:writer ?uri };select distinct ?a where { ?a dbp:writer ?uri };39c7d79acd6a4c698df99c2cf360fdee
http://dbpedia.org/ontology/TelevisionShow;;;Who wrote <A>?;SELECT DISTINCT ?uri where { <A> dbo:writer ?uri };select distinct ?a where { ?a dbo:writer ?uri };244b1c2f6e3e4c57b2532ec5e4d15329
http://dbpedia.org/ontology/WrittenWork;;;Who wrote <A>?;SELECT DISTINCT ?uri where { ?uri dbo:notableWork <A> . ?uri a dbo:Writer };select distinct ?a where { ?uri dbo:notableWork ?a . ?uri a dbo:Writer };6aa2c0fad7224aab875e00964e242d8b
http://dbpedia.org/ontology/Person;;;Who wrote the play in which <A> is a character?;SELECT DISTINCT ?uri where { ?x dbp:characters <A> . ?x dbp:writer ?uri . ?x a dbo:Play };select distinct ?a where { ?x dbp:characters ?a . ?x dbp:writer ?uri . ?x a dbo:Play };530da5683a824177a5b7b23c2d8447d1
http://dbpedia.org/ontology/Person;;;Who wrote the play in which a character called <A> exists?;SELECT DISTINCT ?uri where { ?x dbp:characters <A> . ?x dbp:writer ?uri . ?x a dbo:Play };select distinct ?a where { ?x dbp:characters ?a . ?x dbp:writer ?uri . ?x a dbo:Play };ba5faf932d46419e98e625fe00202062
http://dbpedia.org/ontology/MusicalWork;;;Who wrote the subsequent work of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:subsequentWork ?x . ?x dbo:writer ?uri };select distinct ?a where { ?a dbo:subsequentWork ?x . ?x dbo:writer ?uri };f6576ee287fd4a29b03077da31e64c44
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;<A> did the music for what movies?;SELECT DISTINCT ?uri where { ?uri dbp:music <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:music ?a . ?uri a dbo:Film };59686a5c59394e02a601a3632e7c72bf
http://dbpedia.org/ontology/Band;;;<A> has been recorded in which places?;SELECT DISTINCT ?uri where { ?x dbo:artist <A> . ?x dbo:recordedIn ?uri };select distinct ?a where { ?x dbo:artist ?a . ?x dbo:recordedIn ?uri };711db5b7af9245649c23c84820a2671c
http://dbpedia.org/ontology/MusicalArtist;;;<A> has composed music for how many things?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:composer <A> };select distinct ?a where { ?uri dbo:composer ?a };1baf73ee859f4a678e907f2e806738b0
http://dbpedia.org/class/yago/WikicatGuitarAmplifierManufacturers;;;<A> is a musical instrument played by which artists?;SELECT DISTINCT ?uri where { ?uri dbo:instrument <A> . ?uri a dbo:MusicalArtist };select distinct ?a where { ?uri dbo:instrument ?a . ?uri a dbo:MusicalArtist };f40c1a2ee9c24177ad87206df71211e0
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;<A> is in which band?;SELECT DISTINCT ?uri where { ?uri dbo:bandMember <A> };select distinct ?a where { ?uri dbo:bandMember ?a };a2ccd223b18049ec8f3baa631c19db91
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;<A> is the member of what band?;SELECT DISTINCT ?uri where { ?uri dbp:currentMembers <A> . ?uri a dbo:Band };select distinct ?a where { ?uri dbp:currentMembers ?a . ?uri a dbo:Band };47e1ecb9aed24329aa182ac22dd61027
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;<A> makes songs in which languages?;SELECT DISTINCT ?uri where { ?x dbp:artist <A> . ?x dbp:language ?uri };select distinct ?a where { ?x dbp:artist ?a . ?x dbp:language ?uri };2f4493990eff40b794e67500a851e312
http://dbpedia.org/ontology/Band;;;<A> singles are of which language?;SELECT DISTINCT ?uri where { ?x dbo:musicalBand <A> . ?x dbp:language ?uri . ?x a dbo:Single };select distinct ?a where { ?x dbo:musicalBand ?a . ?x dbp:language ?uri . ?x a dbo:Single };26de4237807b43509a696a7aa4460ae3
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;<A> was associated with which band?;SELECT DISTINCT ?uri where { ?uri dbo:associatedBand <A> };select distinct ?a where { ?uri dbo:associatedBand ?a };c838dc07c8ba4000a51426ddb603d08d
http://dbpedia.org/ontology/MusicalWork;;;<A> was composed by whom ?;SELECT DISTINCT ?uri where { <A> dbo:composer ?uri };select distinct ?a where { ?a dbo:composer ?uri };daa582dfaf1a4472bddfa0b0a4deb1e5
http://dbpedia.org/ontology/Writer;;;<A> wrote the musical extended from which book?;SELECT DISTINCT ?uri where { ?x dbo:author <A> . ?x dbo:basedOn ?uri . ?x a dbo:Musical };select distinct ?a where { ?x dbo:author ?a . ?x dbo:basedOn ?uri . ?x a dbo:Musical };39eeccfe288b4fc78a5dcd44386e7255
http://dbpedia.org/ontology/MusicalArtist;;;<A>'s musicals has been adapted from how many things?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:music <A> . ?x dbo:basedOn ?uri };select distinct ?a where { ?x dbp:music ?a . ?x dbo:basedOn ?uri };427a250b939b4dbfab09841c8f20e929
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;<B> and <A> were originally composed by whom?;SELECT DISTINCT ?uri where { <B> dbo:composer ?uri . <A> dbo:composer ?uri };select distinct ?a, ?b where { ?b dbo:composer ?uri . ?a dbo:composer ?uri };04444d2be01e42628d4b68c281b03655
;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Among which sitcoms in which theme music is composed by <B> is located in <A> ?;SELECT DISTINCT ?uri where { ?uri dbo:location <A> . ?uri dbp:themeMusicComposer <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbo:location ?a . ?uri dbp:themeMusicComposer ?b . ?uri a dbo:TelevisionShow };44e437e237a94b7abe806fcc1f7ae2e4
;;;Artists trained at <A> buried where?;SELECT DISTINCT ?uri where { ?x dbo:training <A> . ?x dbo:restingPlace ?uri . ?x a dbo:Artist };select distinct ?a where { ?x dbo:training ?a . ?x dbo:restingPlace ?uri . ?x a dbo:Artist };5bc9919a43db4252ba6316057cf3b8e0
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Collaborators of <A> have composed music for which movies?;SELECT DISTINCT ?uri where { ?x dbp:associatedActs <A> . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:associatedActs ?a . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };7f55bf607c9e490aae4ff2f9f40a27e2
http://dbpedia.org/ontology/RecordLabel;;;Count all the band members who are in Bands which have signed up with <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:label <A> . ?x dbo:bandMember ?uri };select distinct ?a where { ?x dbp:label ?a . ?x dbo:bandMember ?uri };0bc0430408384e73b48e9e08a71e7f11
http://dbpedia.org/ontology/Band;;;Count all the shows whose music composers are in <A>.;SELECT DISTINCT COUNT(?uri) where { ?x dbo:associatedMusicalArtist <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:associatedMusicalArtist ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };2712e77ee9714f4e9dc75aee139c947d
http://dbpedia.org/ontology/Band;;;Count the band members of <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbo:bandMember ?uri . ?uri a dbo:Person };select distinct ?a where { ?a dbo:bandMember ?uri . ?uri a dbo:Person };faf06a2c20664530a15b7b7d5b272fdc
http://dbpedia.org/ontology/Person;;;Count the different genres of music made by <A> bands?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:hometown <A> . ?x dbo:genre ?uri . ?uri a dbo:MusicGenre };select distinct ?a where { ?x dbo:hometown ?a . ?x dbo:genre ?uri . ?uri a dbo:MusicGenre };b60070566739496cbb32be93d3aa6d21
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Count the movies directed by <B> and music composer <A> ?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:music <A> . ?uri dbp:director <B> };select distinct ?a, ?b where { ?uri dbp:music ?a . ?uri dbp:director ?b };94109f8a38244b3d8a1dc4cfb6ba55b2
;;;Count the number of artist whose pone of the field is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:field <A> . ?x dbo:field ?uri };select distinct ?a where { ?x dbo:field ?a . ?x dbo:field ?uri };f5c820e865914c8589007c9008866d2a
;;;Count the number of artists in the <A>?;SELECT DISTINCT COUNT(?uri) where { <A> dbp:artist ?uri };select distinct ?a where { ?a dbp:artist ?uri };8da1f3a107bd45b2b6826f13b3e863b9
;;;Count the number of artists who trained at the <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:training <A> . ?uri a dbo:Artist };select distinct ?a where { ?uri dbp:training ?a . ?uri a dbo:Artist };1063c970689c469e81a711a634edf521
;;;Count the number of musical work which were sold by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:label <A> . ?uri dbp:music ?x . ?uri a dbo:MusicalWork };select distinct ?a where { ?x dbp:label ?a . ?uri dbp:music ?x . ?uri a dbo:MusicalWork };a3f36caa2ac0432a9aca31a86472fe19
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/TelevisionShow;;Did <A> do the theme song of <B>?;ASK where { <B> dbp:opentheme <A> };select distinct ?a, ?b where { ?b dbp:opentheme ?a };d5b9d26028c14c77af021dfcc3cc13c2
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Did <A> make <B>?;ASK where { <B> dbo:musicalArtist <A> };select distinct ?a, ?b where { ?b dbo:musicalArtist ?a };61ea6ede582149b797b26eb6e7d81466
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Did <A> make the song <B>?;ASK where { <B> dbo:musicalBand <A> };select distinct ?a, ?b where { ?b dbo:musicalBand ?a };dab9358e5ab14f72b0af6926cb98b371
http://dbpedia.org/ontology/WrittenWork;http://dbpedia.org/ontology/Artist;;Did <B> do the cover of <A>?;ASK where { <A> dbo:coverArtist <B> };select distinct ?a, ?b where { ?a dbo:coverArtist ?b };f3e6a145912e4850b3f93dbc9342c2b0
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Did <B> the lyrics of <A>?;ASK where { <A> dbp:lyrics <B> };select distinct ?a, ?b where { ?a dbp:lyrics ?b };98cf6110489945a29a7358a6ce88c7b3
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Does <A> play the <B>?;ASK where { <A> dbp:instrument <B> };select distinct ?a, ?b where { ?a dbp:instrument ?b };40679e799df0477cb3225b955fbf7290
;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Does <B> play <A>?;ASK where { <B> dbp:instrument <A> };select distinct ?a, ?b where { ?b dbp:instrument ?a };e3dd3f0c6fa442b6ad746b3be43c9d41
http://dbpedia.org/class/yago/WikicatGuitars;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Does <B> play the <A>?;ASK where { <B> dbo:instrument <A> };select distinct ?a, ?b where { ?b dbo:instrument ?a };d0ef14f4b99740528d80da61bfe95c01
;;;For how many movies are there whose musicians home town is in <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:hometown <A> . ?uri dbp:music ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:hometown ?a . ?uri dbp:music ?x . ?uri a dbo:Film };194f4e5619af43f0a4200140d98ede3b
http://dbpedia.org/ontology/Band;;;For how many movies have the music composer composed music, who have collaborated with <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:associatedMusicalArtist <A> . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:associatedMusicalArtist ?a . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };b202004bedfc47c3ab2bf3c5a1cadc48
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;For which band did <A> perform in the past?;SELECT DISTINCT ?uri where { ?uri dbp:pastMembers <A> };select distinct ?a where { ?uri dbp:pastMembers ?a };1d30861aa35d4f9b8ece033370c4e15c
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;From how many works is the musical derived, whose lyrics are written by <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:lyrics <A> . ?x dbo:basedOn ?uri };select distinct ?a where { ?x dbp:lyrics ?a . ?x dbo:basedOn ?uri };0d4bdac144b6458296c5c93ebacb1789
;;;From which genres of music did those genres emerge where <A> are important?;SELECT DISTINCT ?uri where { ?x dbp:instruments <A> . ?x dbo:stylisticOrigin ?uri . ?x a dbo:MusicGenre };select distinct ?a where { ?x dbp:instruments ?a . ?x dbo:stylisticOrigin ?uri . ?x a dbo:MusicGenre };52e9a4a2f69e419aa527cd4b5658c783
http://dbpedia.org/ontology/MusicGenre;;;Give a list of all the labels that have <A> artists signed up with them?;SELECT DISTINCT ?uri where { ?x dbo:genre <A> . ?x dbo:recordLabel ?uri . ?x a dbo:MusicalArtist };select distinct ?a where { ?x dbo:genre ?a . ?x dbo:recordLabel ?uri . ?x a dbo:MusicalArtist };0d89f5d0f59b44e8a5353d50205fefa4
http://dbpedia.org/ontology/Person;;;Give me a count of movies whose music composer is <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:musicComposer <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbo:musicComposer ?a . ?uri a dbo:Film };587c7b022e6f43c58d30747018299a1f
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Give me a count of musical artists collaborating with <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:associatedMusicalArtist <A> . ?uri a dbo:MusicalArtist };select distinct ?a where { ?uri dbo:associatedMusicalArtist ?a . ?uri a dbo:MusicalArtist };d008d95436354994a9c920a5c4118bd4
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Give me a count of musicians who play an instrument developed by <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:keyPeople <A> . ?uri dbo:instrument ?x . ?uri a dbo:MusicalArtist };select distinct ?a where { ?x dbp:keyPeople ?a . ?uri dbo:instrument ?x . ?uri a dbo:MusicalArtist };331ab7e173c740318ed2adfa0f08046b
http://dbpedia.org/ontology/RecordLabel;;;Give me a list of everyone who married the musicians signed up with <A>?;SELECT DISTINCT ?uri where { ?x dbp:label <A> . ?uri dbo:spouse ?x };select distinct ?a where { ?x dbp:label ?a . ?uri dbo:spouse ?x };8d0baff96ff24540ad867eca41eeb113
;;;Give me the count of artist in the company whose Artist is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:artist <A> . ?x dbp:artist ?uri };select distinct ?a where { ?x dbp:artist ?a . ?x dbp:artist ?uri };e0d8fe804adf4feab999453c822c20e4
;;;Give me the home town of all musical artists who uses <A> as instrument ?;SELECT DISTINCT ?uri where { ?x dbo:instrument <A> . ?x dbo:hometown ?uri . ?x a dbo:MusicalArtist };select distinct ?a where { ?x dbo:instrument ?a . ?x dbo:hometown ?uri . ?x a dbo:MusicalArtist };cce1fd93712c40fca3adc66926bf15f6
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;;Give me the total number of television shows whose theme music composer is <A> and created by <B>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:themeMusicComposer <A> . ?uri dbp:creator <B> };select distinct ?a, ?b where { ?uri dbp:themeMusicComposer ?a . ?uri dbp:creator ?b };dba124f2991542c596c0081858c11b79
http://dbpedia.org/ontology/Band;;;How many albums did the maker of <A> produce?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:artist <A> . ?x dbo:subsequentWork ?uri . ?uri a dbo:Album };select distinct ?a where { ?x dbo:artist ?a . ?x dbo:subsequentWork ?uri . ?uri a dbo:Album };f08d139cd5f1417a98264657c0c71637
;;;How many albums were released under the <A> label?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:label <A> . ?uri a dbo:Album };select distinct ?a where { ?uri dbp:label ?a . ?uri a dbo:Album };e91c453536f24b228292c56b81ead42b
;;;How many artists are signed up with <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:label <A> };select distinct ?a where { ?uri dbp:label ?a };b48a6444785e448b83e9f9120e667014
;;;How many artists have collaborated with famous <A> players?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:notableInstruments <A> . ?x dbo:associatedMusicalArtist ?uri . ?uri a dbo:Artist };select distinct ?a where { ?x dbp:notableInstruments ?a . ?x dbo:associatedMusicalArtist ?uri . ?uri a dbo:Artist };8fb26b1d97b449afb64a79c4c66ada90
http://dbpedia.org/ontology/ArchitecturalStructure;;;How many artists have their works in the <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:museum <A> . ?x dbp:artist ?uri . ?uri a dbo:Artist };select distinct ?a where { ?x dbp:museum ?a . ?x dbp:artist ?uri . ?uri a dbo:Artist };f1a36818194047f59c627aa4e1e8b559
http://dbpedia.org/class/yago/WikicatGuitarAmplifierManufacturers;;;How many artists play as <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:instrument <A> . ?uri a dbo:Artist };select distinct ?a where { ?uri dbo:instrument ?a . ?uri a dbo:Artist };4d5845bcd6044165bbcdfa12d79bd84d
http://dbpedia.org/ontology/ArchitecturalStructure;;;How many artists' works are in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:museum <A> . ?x dbp:artist ?uri . ?uri a dbo:Artist };select distinct ?a where { ?x dbp:museum ?a . ?x dbp:artist ?uri . ?uri a dbo:Artist };48eb16573ec141a5ab3f8b412564aea6
;;;How many bands are based in <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:hometown <A> . ?uri a dbo:Band };select distinct ?a where { ?uri dbo:hometown ?a . ?uri a dbo:Band };431e3662c6994776a8f35a3d3eb26027
;;;How many bands are signed up with <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbo:recordLabel <A> . ?uri a dbo:Band };select distinct ?a where { ?uri dbo:recordLabel ?a . ?uri a dbo:Band };944f7d6fd1da4f1592e9d9056d5986b7
http://dbpedia.org/ontology/MusicalArtist;;;How many bands are signed up with labels which were founded in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:foundation <A> . ?uri dbp:label ?x . ?uri a dbo:Band };select distinct ?a where { ?x dbp:foundation ?a . ?uri dbp:label ?x . ?uri a dbo:Band };2ca759d5f081472b8b48e96396caf9b4
;;;How many bands began in <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:origin <A> . ?uri a dbo:Band };select distinct ?a where { ?uri dbp:origin ?a . ?uri a dbo:Band };5e85a463cae048ce8b509e5c2d31f902
;;;How many bands collaborated with artists who signed up with <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:recordLabel <A> . ?x dbo:associatedMusicalArtist ?uri . ?uri a dbo:Band };select distinct ?a where { ?x dbo:recordLabel ?a . ?x dbo:associatedMusicalArtist ?uri . ?uri a dbo:Band };0db563660d024f5db42e2ff6ddb9f966
http://dbpedia.org/class/yago/WikicatGuitars;;;How many bands have members currently playing the <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:notableInstruments <A> . ?uri dbp:currentMembers ?x . ?uri a dbo:Band };select distinct ?a where { ?x dbp:notableInstruments ?a . ?uri dbp:currentMembers ?x . ?uri a dbo:Band };ea618d18100f4888910364d1044fe633
;;;How many different genres led to other genres where <A> are important?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:instruments <A> . ?x dbo:stylisticOrigin ?uri . ?uri a dbo:MusicGenre };select distinct ?a where { ?x dbp:instruments ?a . ?x dbo:stylisticOrigin ?uri . ?uri a dbo:MusicGenre };312c5bacb7c14ea1b41c0e219107c417
;;;How many different songwriters have had their songs recorded in <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:recordedIn <A> . ?x dbo:writer ?uri };select distinct ?a where { ?x dbo:recordedIn ?a . ?x dbo:writer ?uri };c9adffe8cefd409cac7b4cb98a75654b
http://dbpedia.org/ontology/MusicGenre;;;How many labels sign up <A> artists?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:genre <A> . ?x dbo:recordLabel ?uri };select distinct ?a where { ?x dbp:genre ?a . ?x dbo:recordLabel ?uri };17ce149639704a6da50a88f32bc5eff6
;;;How many movies have their music signed up with <A>.;SELECT DISTINCT COUNT(?uri) where { ?x dbo:recordLabel <A> . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:recordLabel ?a . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };80de2acb61b74b10b7a95a24dc32f5dc
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;How many movies music composers are associated with <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:associatedActs <A> . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:associatedActs ?a . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };8799ce61b9644208a9ceb5a2851990ef
;;;How many other genere are there of the radio stations whose one of the genre is <A> ?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:programmeFormat <A> . ?x dbo:programmeFormat ?uri };select distinct ?a where { ?x dbo:programmeFormat ?a . ?x dbo:programmeFormat ?uri };02ae1a10a037480a91be9b50a5073a8b
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;;How many other people are in a band with <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:currentMembers <A> . ?x dbo:bandMember ?uri . ?uri a dbo:Person };select distinct ?a where { ?x dbp:currentMembers ?a . ?x dbo:bandMember ?uri . ?uri a dbo:Person };778761d04bb14ee8b90d1cbf954322e7
http://dbpedia.org/class/yago/WikicatGuitars;;;How many people are famous for the <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:notableInstruments <A> };select distinct ?a where { ?uri dbp:notableInstruments ?a };fd5f1f21c5d84d139a078d7c277185cd
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;How many people are in the band with <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:currentMembers <A> . ?x dbo:bandMember ?uri . ?uri a dbo:Person };select distinct ?a where { ?x dbp:currentMembers ?a . ?x dbo:bandMember ?uri . ?uri a dbo:Person };cd6d4ee1269f45e89677ac5f6cb06cf3
;;;How many people have worked in the band one of whose current member is <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:currentMembers <A> . ?x dbo:bandMember ?uri . ?uri a dbo:Person };select distinct ?a where { ?x dbp:currentMembers ?a . ?x dbo:bandMember ?uri . ?uri a dbo:Person };9287889114534eda9daed4e2d79a4680
http://dbpedia.org/ontology/MusicGenre;;;How many record labels publish works of <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:genre <A> . ?x dbo:recordLabel ?uri };select distinct ?a where { ?x dbo:genre ?a . ?x dbo:recordLabel ?uri };7355543eae974888a7f58b4d3f0b935f
;;;How many sitcoms are there whose theme music is composed by a <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:hometown <A> . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:hometown ?a . ?uri dbp:themeMusicComposer ?x . ?uri a dbo:TelevisionShow };e33e3f1a2e9d462cb891215cad82dc5b
http://dbpedia.org/ontology/MusicalArtist;;;How many theme musics have been composed by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:themeMusicComposer <A> };select distinct ?a where { ?uri dbp:themeMusicComposer ?a };f6bdf603e0004a3fa20c3ab3fc071309
http://dbpedia.org/ontology/MusicalWork;;;How many writers worked on the album <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:album <A> . ?x dbp:writer ?uri };select distinct ?a where { ?x dbp:album ?a . ?x dbp:writer ?uri };2d5d4a8626d54ff58754ce28b3036910
http://dbpedia.org/ontology/Band;;;In how many places has <A> recorded their songs?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:producer <A> . ?x dbo:recordedIn ?uri };select distinct ?a where { ?x dbo:producer ?a . ?x dbo:recordedIn ?uri };595c138b55a942dd940bede3ff72b507
http://dbpedia.org/ontology/Band;;;In how many places was the album of <A> recorded?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:artist <A> . ?x dbo:recordedIn ?uri };select distinct ?a where { ?x dbo:artist ?a . ?x dbo:recordedIn ?uri };a44318040305431cb237c6809f2a8e7c
http://dbpedia.org/ontology/Person;;;In what movies did <A> compose the music?;SELECT DISTINCT ?uri where { ?uri dbp:music <A> . ?uri a dbo:Film };select distinct ?a where { ?uri dbp:music ?a . ?uri a dbo:Film };adb59836a217439ab637233a71390377
http://dbpedia.org/ontology/MusicalWork;;;In which city was <A> performed live?;SELECT DISTINCT ?uri where { <A> dbp:recorded ?uri };select distinct ?a where { ?a dbp:recorded ?uri };1a8cc713ccd443c9ba6a74d395b4b6b2
http://dbpedia.org/ontology/Person;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;;In which movies directed by <B> has <A> as music composer ?;SELECT DISTINCT ?uri where { ?uri dbo:musicComposer <A> . ?uri dbp:director <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:musicComposer ?a . ?uri dbp:director ?b . ?uri a dbo:Film };bc7257226afd49379f8622d5735bd59f
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Band;;Is <A> a band member of <B>?;ASK where { <B> dbo:bandMember <A> };select distinct ?a, ?b where { ?b dbo:bandMember ?a };d27aec4554814245aba1890efc687d41
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Band;;Is <A> a band member of <B>?;ASK where { <B> dbo:bandMember <A> };select distinct ?a, ?b where { ?b dbo:bandMember ?a };e14a10dfcbdb4da48072fcb7256cdf88
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Is <A> associated with <B>?;ASK where { <B> dbo:associatedBand <A> };select distinct ?a, ?b where { ?b dbo:associatedBand ?a };452897c147984666bc0750d8e1981a80
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Band;;Is <A> the band member of <B>?;ASK where { <B> dbo:bandMember <A> };select distinct ?a, ?b where { ?b dbo:bandMember ?a };0b2cdf195c3d45109c78f3171835c056
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Is <A> the former band member of <B>?;ASK where { <B> dbo:formerBandMember <A> };select distinct ?a, ?b where { ?b dbo:formerBandMember ?a };3a1e1c8fbb3b4c09ba53450a4fd77cd7
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Is <A> the singer of <B>?;ASK where { <B> dbo:musicalArtist <A> };select distinct ?a, ?b where { ?b dbo:musicalArtist ?a };ee5fc86d6ea147f0b4ab317a186d2083
;;;Is <A> the superintendent of <B>?;ASK where { <B> dbp:superintendent <A> };select distinct ?a, ?b where { ?b dbp:superintendent ?a };b9c19bf4a7b2452184d20d0130556a0f
http://dbpedia.org/ontology/Person;;;Is <A> the superintendent of <B>?;ASK where { <B> dbp:superintendent <A> };select distinct ?a, ?b where { ?b dbp:superintendent ?a };4b6f22e87e69458297229de03060b7c2
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Is <B> associated with <A>?;ASK where { <A> dbo:associatedBand <B> };select distinct ?a, ?b where { ?a dbo:associatedBand ?b };007bb942a6da4c3f987fba8dff86e26b
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Is <B> by the musical band <A>?;ASK where { <B> dbo:musicalBand <A> };select distinct ?a, ?b where { ?b dbo:musicalBand ?a };821d1baa1d594333a5e79d50c16efcb4
http://dbpedia.org/ontology/Band;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Is <B> in <A>?;ASK where { <B> dbo:associatedBand <A> };select distinct ?a, ?b where { ?b dbo:associatedBand ?a };40311c537af740a8829bdfa1cfaef4b1
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;Is <B> in the <A> album?;ASK where { <B> dbo:album <A> };select distinct ?a, ?b where { ?b dbo:album ?a };a12b0138676940388abb030a095b99cf
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;is <B> in the <A> album?;ASK where { <B> dbo:album <A> };select distinct ?a, ?b where { ?b dbo:album ?a };ff7902dec19b42b6b2c0de2b2ddef72c
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Is <B> the band of <A>?;ASK where { <B> dbo:musicalBand <A> };select distinct ?a, ?b where { ?b dbo:musicalBand ?a };1dabbe38304b45038e9853ea185a6280
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;Is the song <A> belong in the <B>?;ASK where { <A> dbp:album <B> };select distinct ?a, ?b where { ?a dbp:album ?b };c19fedddfc0041919699b9a01eb5cbd1
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;Is the song <B> from <A>?;ASK where { <B> dbp:fromAlbum <A> };select distinct ?a, ?b where { ?b dbp:fromAlbum ?a };eb019f4872c64a79b87db465172c36a8
http://dbpedia.org/ontology/MusicalArtist;;;List all the artist of albums which have been produced by <A> ?;SELECT DISTINCT ?uri where { ?x dbp:producer <A> . ?x dbp:artist ?uri . ?x a dbo:Album };select distinct ?a where { ?x dbp:producer ?a . ?x dbp:artist ?uri . ?x a dbo:Album };07124083be6249ff961e6ea104195239
http://dbpedia.org/ontology/MusicalArtist|http://dbpedia.org/ontology/Band;;;List all the artist of the TV shows which has <A> as one of the artist ?;SELECT DISTINCT ?uri where { ?x dbp:artist <A> . ?x dbp:artist ?uri . ?x a dbo:TelevisionShow };select distinct ?a where { ?x dbp:artist ?a . ?x dbp:artist ?uri . ?x a dbo:TelevisionShow };a82a76ab3a4e43b4b970a48f9341fa82
;;;List all the awards won by the artist who has won <A> ?;SELECT DISTINCT ?uri where { ?x dbo:award <A> . ?x dbo:award ?uri };select distinct ?a where { ?x dbo:award ?a . ?x dbo:award ?uri };03d1aac45ffe4ba0a49144fd00b0c7b1
http://dbpedia.org/ontology/Band;;;List all the bands which have members of the band <A> in them?;SELECT DISTINCT ?uri where { <A> dbo:bandMember ?x . ?x dbo:associatedBand ?uri };select distinct ?a where { ?a dbo:bandMember ?x . ?x dbo:associatedBand ?uri };f7360f8ebf504cb5977b2fe626623fb6
;;;List all the collaborators of the artist which has collaborated with <A> ?;SELECT DISTINCT ?uri where { ?x dbo:associatedMusicalArtist <A> . ?x dbo:associatedMusicalArtist ?uri . ?x a dbo:Artist };select distinct ?a where { ?x dbo:associatedMusicalArtist ?a . ?x dbo:associatedMusicalArtist ?uri . ?x a dbo:Artist };c8c5d0a0594e48609e559b9b8766b7a5
http://dbpedia.org/ontology/RecordLabel;;;List all the movies whose music has been made up with someone under <A>?;SELECT DISTINCT ?uri where { ?x dbo:recordLabel <A> . ?uri dbp:music ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbo:recordLabel ?a . ?uri dbp:music ?x . ?uri a dbo:Film };61779d70e408400886f2c2932d7b5e69
;;;List all the narrator of the albums which had <A> as one of the narrator ?;SELECT DISTINCT ?uri where { ?x dbp:narrated <A> . ?x dbp:narrated ?uri . ?x a dbo:Album };select distinct ?a where { ?x dbp:narrated ?a . ?x dbp:narrated ?uri . ?x a dbo:Album };cad124dc6dd849f8aa03d47598e6abbb
;;;List all the record label distributed by the distributor of <A> ?;SELECT DISTINCT ?uri where { ?x dbp:distributor <A> . ?x dbp:distributor ?uri . ?x a dbo:RecordLabel };select distinct ?a where { ?x dbp:distributor ?a . ?x dbp:distributor ?uri . ?x a dbo:RecordLabel };9fe4e52ceac346d898b87b58552de0de
http://dbpedia.org/ontology/MusicalWork;;;List down all the associcated musical artist of the artist of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:artist ?x . ?x dbo:associatedMusicalArtist ?uri };select distinct ?a where { ?a dbp:artist ?x . ?x dbo:associatedMusicalArtist ?uri };5fa9fa2055eb4ddbb39a16de5cdc76ec
http://dbpedia.org/ontology/MusicalWork;;;List down all the bands to which the writers of <A> are associated?;SELECT DISTINCT ?uri where { <A> dbo:writer ?x . ?x dbo:associatedBand ?uri };select distinct ?a where { ?a dbo:writer ?x . ?x dbo:associatedBand ?uri };ec5f6894f5484d34a2f951ca88436084
http://dbpedia.org/ontology/MusicalWork;;;List down the associated musical artist of the writer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:writer ?x . ?x dbo:associatedMusicalArtist ?uri };select distinct ?a where { ?a dbp:writer ?x . ?x dbo:associatedMusicalArtist ?uri };62c0c7b3421044339478d24834c3b09d
;;;List few musical artist whose notable instruments are <A> and <B>?;SELECT DISTINCT ?uri where { ?uri dbp:notableInstruments <A> . ?uri dbo:instrument <B> . ?uri a dbo:MusicalArtist };select distinct ?a, ?b where { ?uri dbp:notableInstruments ?a . ?uri dbo:instrument ?b . ?uri a dbo:MusicalArtist };bf11268a275f4ca090b23db4888f1ec3
;;;List some musicians associated with famous <A> players?;SELECT DISTINCT ?uri where { ?x dbp:notableInstruments <A> . ?x dbo:associatedMusicalArtist ?uri };select distinct ?a where { ?x dbp:notableInstruments ?a . ?x dbo:associatedMusicalArtist ?uri };cbddb4a494514d32ae94fd66fdde0269
;;;List some songwriters whose work has been recorded in <A>?;SELECT DISTINCT ?uri where { ?x dbo:recordedIn <A> . ?x dbp:writer ?uri . ?x a dbo:Work };select distinct ?a where { ?x dbo:recordedIn ?a . ?x dbp:writer ?uri . ?x a dbo:Work };707d9bdd0d8e44a1bae79286521ce0fc
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Film;;List the <A>'s movies which has music by <B> ?;SELECT DISTINCT ?uri where { ?uri dbo:director <A> . ?uri dbp:music <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:director ?a . ?uri dbp:music ?b . ?uri a dbo:Film };d5f39362abb34bc4a563caa4d12fa4ce
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicGenre;;List the <B> TV shows with theme music given by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:genre <B> . ?uri dbp:themeMusicComposer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:genre ?b . ?uri dbp:themeMusicComposer ?a . ?uri a dbo:TelevisionShow };cd9712900aa94048b9a54b08142c25f4
http://dbpedia.org/ontology/Band;;;List the associated musical artist of the current members of <A>?;SELECT DISTINCT ?uri where { <A> dbp:currentMembers ?x . ?x dbo:associatedMusicalArtist ?uri };select distinct ?a where { ?a dbp:currentMembers ?x . ?x dbo:associatedMusicalArtist ?uri };37fc8c815f8f4cd1a8c8b46ad3a577f7
http://dbpedia.org/ontology/RecordLabel;;;List the associates of bands which have a label by <A> ?;SELECT DISTINCT ?uri where { ?x dbo:recordLabel <A> . ?x dbp:associatedActs ?uri . ?x a dbo:Band };select distinct ?a where { ?x dbo:recordLabel ?a . ?x dbp:associatedActs ?uri . ?x a dbo:Band };38ca63fc474a462fafe6fec5ad06b1e0
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;List the authors of the musicals whose songwriter is <A>.;SELECT DISTINCT ?uri where { ?x dbo:musicBy <A> . ?x dbo:author ?uri . ?x a dbo:Musical };select distinct ?a where { ?x dbo:musicBy ?a . ?x dbo:author ?uri . ?x a dbo:Musical };331d362a310946ae8a786c98ad75d8f4
http://dbpedia.org/ontology/RecordLabel;;;List the home town of the bands whose label is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:label <A> . ?x dbo:hometown ?uri . ?x a dbo:Band };select distinct ?a where { ?x dbp:label ?a . ?x dbo:hometown ?uri . ?x a dbo:Band };50b720c354cd4b49b16d4a0335fb3b51
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/TelevisionShow;;List the judges of <B> which is also the artist of <A> ?;SELECT DISTINCT ?uri where { <B> dbp:judges ?uri . <A> dbp:artist ?uri };select distinct ?a, ?b where { ?b dbp:judges ?uri . ?a dbp:artist ?uri };95a5e8b6535b44d7a306e95c185accee
http://dbpedia.org/ontology/Band;;;List the members of <A>?;SELECT DISTINCT ?uri where { <A> dbo:bandMember ?uri };select distinct ?a where { ?a dbo:bandMember ?uri };3893e0c34af5499f992e3e068e2b4394
http://dbpedia.org/class/yago/Entertainer109616922;;;List the movie whose music was given by <A> and distributed by <B>?;SELECT DISTINCT ?uri where { ?uri dbo:musicComposer <A> . ?uri dbo:distributor <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:musicComposer ?a . ?uri dbo:distributor ?b . ?uri a dbo:Film };dd43bcfacc674fb8980f943492e44533
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/class/yago/Entertainer109616922;;List the movies edited by <A> in which music was composed by <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:music <B> . ?uri dbp:editing <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:music ?b . ?uri dbp:editing ?a . ?uri a dbo:Film };0881b71d464e4be09d6650e2467d8008
http://dbpedia.org/ontology/Band;;;List the movies whose music composer is often associated with <A>.;SELECT DISTINCT ?uri where { ?x dbp:associatedActs <A> . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };select distinct ?a where { ?x dbp:associatedActs ?a . ?uri dbo:musicComposer ?x . ?uri a dbo:Film };b9e8a704d52448cfa0def79568e79d2a
http://dbpedia.org/ontology/TelevisionEpisode;;;List the music of <A>?;SELECT DISTINCT ?uri where { <A> dbp:music ?uri };select distinct ?a where { ?a dbp:music ?uri };00691ec829834dd08cec97419d51eb4c
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;List the other members of the band of which <A> is a part?;SELECT DISTINCT ?uri where { ?x dbp:currentMembers <A> . ?x dbo:bandMember ?uri . ?x a dbo:Band };select distinct ?a where { ?x dbp:currentMembers ?a . ?x dbo:bandMember ?uri . ?x a dbo:Band };292a555f92794024a9334e9248fd2c1a
http://dbpedia.org/ontology/MusicalWork;;;List the subsequent work of the albums whose one of the subsequent work is <A>?;SELECT DISTINCT ?uri where { ?x dbo:subsequentWork <A> . ?x dbo:subsequentWork ?uri . ?x a dbo:Album };select distinct ?a where { ?x dbo:subsequentWork ?a . ?x dbo:subsequentWork ?uri . ?x a dbo:Album };ed1295a0e7e74eedae807b925a9ffc34
http://dbpedia.org/ontology/Award;;;List the total number of awards of the musicals who have won <A>?;SELECT DISTINCT COUNT(?uri) where { ?x dbp:awards <A> . ?x dbp:awards ?uri };select distinct ?a where { ?x dbp:awards ?a . ?x dbp:awards ?uri };4a746d60634147519a4030473d50732c
;;;Music for what was made by someone who died of a <A>?;SELECT DISTINCT ?uri where { ?x dbo:deathCause <A> . ?uri dbp:music ?x };select distinct ?a where { ?x dbo:deathCause ?a . ?uri dbp:music ?x };ec38c30a73c44774b95944ad398e3e8b
http://dbpedia.org/ontology/Person;;;Music of how many things has been given by <A>?;SELECT DISTINCT COUNT(?uri) where { ?uri dbp:music <A> };select distinct ?a where { ?uri dbp:music ?a };fa117cae2bc74153aff9272ca43d4cf1
http://dbpedia.org/ontology/Band;;;Musical artists who are associated with <A> were born where ?;SELECT DISTINCT ?uri where { ?x dbp:associatedActs <A> . ?x dbp:birthPlace ?uri . ?x a dbo:MusicalArtist };select distinct ?a where { ?x dbp:associatedActs ?a . ?x dbp:birthPlace ?uri . ?x a dbo:MusicalArtist };89020ed4a12841c4abf8744b5f6f84d3
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name all sitcoms whose theme music is made by <A>?;SELECT DISTINCT ?uri where { ?x dbo:musicalBand <A> . ?uri dbo:openingTheme ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbo:musicalBand ?a . ?uri dbo:openingTheme ?x . ?uri a dbo:TelevisionShow };6f6810ed49a548939905cf6abbe9bccf
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;;;Name all the bands which have members of <A> in them.;SELECT DISTINCT ?uri where { <A> dbo:bandMember ?x . ?x dbo:associatedBand ?uri };select distinct ?a where { ?a dbo:bandMember ?x . ?x dbo:associatedBand ?uri };4afbc166875f40419999fc2110b6ec04
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name all those whose spouses have performed with <A>?;SELECT DISTINCT ?uri where { ?x dbo:associatedMusicalArtist <A> . ?uri dbo:spouse ?x };select distinct ?a where { ?x dbo:associatedMusicalArtist ?a . ?uri dbo:spouse ?x };bd739b63ea0e48d19bbd74153447ff73
http://dbpedia.org/ontology/MusicalArtist;;;Name some shows similar to the one whose theme song is made by <A>.;SELECT DISTINCT ?uri where { ?x dbp:themeMusicComposer <A> . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };select distinct ?a where { ?x dbp:themeMusicComposer ?a . ?uri dbo:related ?x . ?uri a dbo:TelevisionShow };eea52cce6ad445d8a6611b1b4d4538e7
http://dbpedia.org/ontology/MusicalWork;;;Name the artist of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:artist ?uri };select distinct ?a where { ?a dbp:artist ?uri };814cd09a47ce48cea2ad776e1e753a16
;;;Name the artist of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:artist ?uri };select distinct ?a where { ?a dbp:artist ?uri };a2ec42a127424074b5d7bc144285dcd6
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Name the artist who made <B> and is often associated with <A>?;SELECT DISTINCT ?uri where { <A> dbo:associatedBand ?uri . <B> dbp:artist ?uri };select distinct ?a, ?b where { ?a dbo:associatedBand ?uri . ?b dbp:artist ?uri };9fdd8478c6d84d1291fb875beff000f6
http://dbpedia.org/class/yago/WikicatGuitars;;;Name the band atleast one of whose members is famous for playing the <A>?;SELECT DISTINCT ?uri where { ?x dbp:notableInstruments <A> . ?uri dbp:currentMembers ?x . ?uri a dbo:Band };select distinct ?a where { ?x dbp:notableInstruments ?a . ?uri dbp:currentMembers ?x . ?uri a dbo:Band };433e3e8781da456b9fc1184bb9815b88
http://dbpedia.org/ontology/MusicalArtist;;;Name the co-founder of the record labels which have one of the founder as <A> ?;SELECT DISTINCT ?uri where { ?x dbp:founder <A> . ?x dbp:founder ?uri . ?x a dbo:RecordLabel };select distinct ?a where { ?x dbp:founder ?a . ?x dbp:founder ?uri . ?x a dbo:RecordLabel };abdbfd4f0fc94f8abd065f71ee33daaa
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Name the common associate band of <A> and <B> ?;SELECT DISTINCT ?uri where { <A> dbo:associatedBand ?uri . <B> dbo:associatedBand ?uri };select distinct ?a, ?b where { ?a dbo:associatedBand ?uri . ?b dbo:associatedBand ?uri };f84aac1f48e348e8964388d29ed6a82b
http://dbpedia.org/ontology/MusicalWork;http://dbpedia.org/ontology/MusicalWork;;Name the common musical band of <A> and <B> ?;SELECT DISTINCT ?uri where { <A> dbo:musicalBand ?uri . <B> dbo:musicalBand ?uri };select distinct ?a, ?b where { ?a dbo:musicalBand ?uri . ?b dbo:musicalBand ?uri };eec96c7f869747149720de05e392503f
http://dbpedia.org/ontology/MusicalWork;;;Name the common record label of <A> and <B> ?;SELECT DISTINCT ?uri where { <A> dbp:label ?uri . <B> dbo:recordLabel ?uri };select distinct ?a, ?b where { ?a dbp:label ?uri . ?b dbo:recordLabel ?uri };9d360f44420b41f5af982a515dfc7fa6
http://dbpedia.org/ontology/MusicalWork;;;Name the composer of <A> ?;SELECT DISTINCT ?uri where { <A> dbp:composer ?uri };select distinct ?a where { ?a dbp:composer ?uri };9b3d41fd10154e0099da01bfaf7daf4a
http://dbpedia.org/ontology/WrittenWork;;;Name the cover artist of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:coverArtist ?uri };select distinct ?a where { ?a dbo:coverArtist ?uri };9496ce7155814acaac417eb27fd22cc1
http://dbpedia.org/ontology/MusicalArtist;;;Name the founders of the record labels whose one of the founders is <A> ?;SELECT DISTINCT ?uri where { ?x dbp:founder <A> . ?x dbp:founder ?uri . ?x a dbo:RecordLabel };select distinct ?a where { ?x dbp:founder ?a . ?x dbp:founder ?uri . ?x a dbo:RecordLabel };ed3777b583d140ae9097e15d39c80d2f
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/MusicalArtist;;Name the movie in which <B> gave the music and <A> was the cinematographer ?;SELECT DISTINCT ?uri where { ?uri dbp:music <B> . ?uri dbo:cinematography <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:music ?b . ?uri dbo:cinematography ?a . ?uri a dbo:Film };190465152dd44639aab83ac6b0e1d0fa
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Film|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the movie which has music composed by <A> and screenplay by <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:music <A> . ?uri dbp:screenplay <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:music ?a . ?uri dbp:screenplay ?b . ?uri a dbo:Film };d3d85e553d834356807085b355f01240
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;;Name the movie whose director is <B> and it's music composer is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:director <B> . ?uri dbo:musicComposer <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:director ?b . ?uri dbo:musicComposer ?a . ?uri a dbo:Film };9c030631b627435492811c991fff3fe5
http://dbpedia.org/ontology/Person;http://dbpedia.org/ontology/Person;;Name the movie whose director of photography is <B> and <A> was the music composer?;SELECT DISTINCT ?uri where { ?uri dbo:cinematography <B> . ?uri dbo:musicComposer <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbo:cinematography ?b . ?uri dbo:musicComposer ?a . ?uri a dbo:Film };8236caff2da947d6a6cf88099c134f23
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/Person;;Name the movie with narrator as <A> and music composer as <B>?;SELECT DISTINCT ?uri where { ?uri dbp:narrator <A> . ?uri dbp:music <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:narrator ?a . ?uri dbp:music ?b . ?uri a dbo:Film };c7d501b648c444519cdf5fc5af8a1145
http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/Band;;Name the movie written by <B> and has music composer as <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:writer <B> . ?uri dbo:musicComposer <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:writer ?b . ?uri dbo:musicComposer ?a . ?uri a dbo:Film };b087abc428724248b54e69d4f2519f9a
http://dbpedia.org/ontology/Person;;;Name the movies distributed by <B> and has music composer as <A>?;SELECT DISTINCT ?uri where { ?uri dbp:distributor <B> . ?uri dbo:musicComposer <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:distributor ?b . ?uri dbo:musicComposer ?a . ?uri a dbo:Film };bb9861a2275446428e974e73dd1e1b1b
http://dbpedia.org/class/yago/Entertainer109616922;;;Name the movies for which music was given by <A> and distributed by <B>?;SELECT DISTINCT ?uri where { ?uri dbp:music <A> . ?uri dbp:distributor <B> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:music ?a . ?uri dbp:distributor ?b . ?uri a dbo:Film };cd70ac27443f476991974aca030f0ff2
http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/class/yago/Editor110044879;http://dbpedia.org/ontology/Film;;Name the movies in which music is give by <B> and edited by <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:music <B> . ?uri dbo:editing <A> . ?uri a dbo:Film };select distinct ?a, ?b where { ?uri dbp:music ?b . ?uri dbo:editing ?a . ?uri a dbo:Film };96586e0449a14210adfeea2f9756672f
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name the music artist which collaborated with the spouse of <A>?;SELECT DISTINCT ?uri where { ?x dbo:spouse <A> . ?uri dbo:associatedMusicalArtist ?x . ?uri a dbo:MusicalArtist };select distinct ?a where { ?x dbo:spouse ?a . ?uri dbo:associatedMusicalArtist ?x . ?uri a dbo:MusicalArtist };de9a66a3c88149bf89b74795d1fb60b8
;;;Name the musical artists whose label is given by <A>?;SELECT DISTINCT ?uri where { ?uri dbp:label <A> . ?uri a dbo:MusicalArtist };select distinct ?a where { ?uri dbp:label ?a . ?uri a dbo:MusicalArtist };316b176330564acfb5633baade63b8d7
http://dbpedia.org/ontology/MusicalWork;;;Name the musical band of <A> ?;SELECT DISTINCT ?uri where { <A> dbo:musicalBand ?uri };select distinct ?a where { ?a dbo:musicalBand ?uri };f82d0e347f514ec1bcb41a22922ce6aa
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;http://dbpedia.org/ontology/MusicalWork;;Name the musician who gave the music in <B> and is also wedded to <A> ?;SELECT DISTINCT ?uri where { <B> dbp:music ?uri . <A> dbo:spouse ?uri };select distinct ?a, ?b where { ?b dbp:music ?uri . ?a dbo:spouse ?uri };2275055777524db1a78e0856a6e2cc1b
;;;Name the musician who was given label by <B> and has been associated with <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:label <B> . ?uri dbo:associatedMusicalArtist <A> . ?uri a dbo:MusicalArtist };select distinct ?a, ?b where { ?uri dbp:label ?b . ?uri dbo:associatedMusicalArtist ?a . ?uri a dbo:MusicalArtist };aa54fbc2c1df4f47af6e7a074f77535f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;;Name the narrators of the album which has been narrated by <A> ?;SELECT DISTINCT ?uri where { ?x dbp:narrated <A> . ?x dbp:narrated ?uri };select distinct ?a where { ?x dbp:narrated ?a . ?x dbp:narrated ?uri };f04972321b83404b87e4d7cf5de5c5a6
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Name the sitcom with theme music composer as <A> and channel as <B>?;SELECT DISTINCT ?uri where { ?uri dbp:themeMusicComposer <A> . ?uri dbo:channel <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:themeMusicComposer ?a . ?uri dbo:channel ?b . ?uri a dbo:TelevisionShow };710a55e3696846ab95695ee383a1fa25
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Name the televesion show which has artist named <A> ?;SELECT DISTINCT ?uri where { ?uri dbp:artist <A> . ?uri a dbo:TelevisionShow };select distinct ?a where { ?uri dbp:artist ?a . ?uri a dbo:TelevisionShow };5f620b019a9d4b988b56f5b4f3d4666a
http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Broadcaster;;Name the television show whose theme music is composed by <A> and broadcasted on <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:themeMusicComposer <A> . ?uri dbp:channel <B> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:themeMusicComposer ?a . ?uri dbp:channel ?b . ?uri a dbo:TelevisionShow };c547ee5efa2249c4a8e652d7c3822fed
http://dbpedia.org/ontology/Band;http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922;;Name the television show whose voice is given by <B> and theme music composer is <A>?;SELECT DISTINCT ?uri where { ?uri dbp:voices <B> . ?uri dbp:themeMusicComposer <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:voices ?b . ?uri dbp:themeMusicComposer ?a . ?uri a dbo:TelevisionShow };175487b495244a41974ebc41170631a9
http://dbpedia.org/ontology/Broadcaster;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Tell me the name of the <A>'s TV show whose Artist is <B> ?;SELECT DISTINCT ?uri where { ?uri dbp:artist <B> . ?uri dbo:network <A> . ?uri a dbo:TelevisionShow };select distinct ?a, ?b where { ?uri dbp:artist ?b . ?uri dbo:network ?a . ?uri a dbo:TelevisionShow };33f63e6829ad4508bbe0d83cf298e9df
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Through how many labels has <A> released her singles?;SELECT DISTINCT COUNT(?uri) where { ?x dbo:writer <A> . ?x dbo:recordLabel ?uri };select distinct ?a where { ?x dbo:writer ?a . ?x dbo:recordLabel ?uri };eebefa6c5abc4c53ac2067ca0bed237d
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;;Through which label has <A> released her singles?;SELECT DISTINCT ?uri where { ?x dbo:writer <A> . ?x dbo:recordLabel ?uri . ?x a dbo:Single };select distinct ?a where { ?x dbo:writer ?a . ?x dbo:recordLabel ?uri . ?x a dbo:Single };c9d5a274b50f454986740fdfafd327cc
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Band;;Was <A> a former member of <B>?;ASK where { <B> dbo:formerBandMember <A> };select distinct ?a, ?b where { ?b dbo:formerBandMember ?a };f56af3f27ab94106a92cb2337b8c73ad
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmDirector110088200|http://dbpedia.org/class/yago/FilmMaker110088390;http://dbpedia.org/ontology/Band;;Was <A> a member of <B>?;ASK where { <B> dbo:bandMember <A> };select distinct ?a, ?b where { ?b dbo:bandMember ?a };c766098f1479492fb8d4e687ad9ea182
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Band;;Was <A> a member of the <B>?;ASK where { <B> dbp:pastMembers <A> };select distinct ?a, ?b where { ?b dbp:pastMembers ?a };f64ea5a5f2dc48fd8988423ab27e5f5f
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Band;;Was <A> a part of <B>?;ASK where { <B> dbo:formerBandMember <A> };select distinct ?a, ?b where { ?b dbo:formerBandMember ?a };f97937b4cc484a1f82a31b1d65d0041c
http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/Band;;Was <A> in <B>?;ASK where { <B> dbp:pastMembers <A> };select distinct ?a, ?b where { ?b dbp:pastMembers ?a };a4cea3abd1184b649cc7a5057169a76b
http://dbpedia.org/class/yago/Actor109765278|http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/class/yago/FilmMaker110088390|http://dbpedia.org/ontology/MusicalArtist;http://dbpedia.org/ontology/MusicalWork;;Was <A> in the <B> group?;ASK where { <B> dbo:musicalArtist <A> };select distinct ?a, ?b where { ?b dbo:musicalArtist ?a };67483b164094400d9d576eccb59768bd
;http://dbpedia.org/class/yago/Entertainer109616922|http://dbpedia.org/ontology/MusicalArtist;;Was <A> in the band <B>?;ASK where { <B> dbo:associatedBand <A> };select distinct ?a, ?b where { ?b dbo:associatedBand ?a };dd1825b14155469b8f2931245fe6c188