The table below shows countries and languages spoken. Note t…

The table below shows countries and languages spoken. Note that each language has a different row for the country. Fill in the blanks in the query below that will return only countries that speaks both English and Spanish. SELECT country FROM table WHERE language = _ _ _ _ AND _ _ _ _  IN (SELECT DISTINCT country FROM table WHERE                                         _ _ _ _  =  ‘Spanish’ ) Table1: