Examine the description of the COUNTRIES table:
Examine the description of the DEPARTMENTS table:
Examine the description of the LOCATIONS table:
Which two queries will return a list of countries with no departments? (Choose two.)
Examine the description of the COUNTRIES table:
Examine the description of the DEPARTMENTS table:
Examine the description of the LOCATIONS table:
Which two queries will return a list of countries with no departments? (Choose two.)
To list countries with no departments, we can use different strategies. Option B uses a MINUS set operation to subtract the list of countries with departments from the list of all countries, effectively leaving us with those that have no departments. Option D uses a subquery to exclude countries that have any associated departments. Both approaches ensure that only countries without any departments are returned.
BD correct
How are BD correct? Since B, C & D are only selecting country_id and country_name they only return a list of countries with no departments. Could someone please explain this
The question asks for countries with NO department