<A> has how many relatives?
stringlengths 16
82
| SELECT DISTINCT COUNT attr_open var_uri attr_close where brack_open <A> dbo_relative var_uri brack_close
stringlengths 54
169
|
---|---|
Whos a famous relative of <A>?
|
SELECT DISTINCT var_uri where brack_open var_uri dbo_relation <A> brack_close
|
Whose children are married to <A>?
|
SELECT DISTINCT var_uri where brack_open var_x dbo_spouse <A> sep_dot var_uri dbo_child var_x brack_close
|
Whose children died in <A>?
|
SELECT DISTINCT var_uri where brack_open var_x dbo_deathPlace <A> sep_dot var_uri dbo_child var_x brack_close
|
Whose mom is <A>?
|
SELECT DISTINCT var_uri where brack_open var_uri dbp_mother <A> brack_close
|
Whose relatives are <A> and <B>?
|
SELECT DISTINCT var_uri where brack_open var_uri dbo_relative <A> sep_dot var_uri dbo_relative <B> brack_close
|
Whose resting place is <A> and has kids named <B>?
|
SELECT DISTINCT var_uri where brack_open var_uri dbo_restingPlace <A> sep_dot var_uri dbo_child <B> brack_close
|
Why did <A> and <B> die?
|
SELECT DISTINCT var_uri where brack_open <A> dbo_deathCause var_uri sep_dot <B> dbp_deathCause var_uri brack_close
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.