What kind of subquery is used in the following select?
SELECT DISTINCT Language
FROM CountryLanguage
WHERE CountryCode IN (SELECT Code FROM Country WHERE Continents ‘Asia’)
ORDER BY Language
A.
A scalar subquery.
B.
A row subquery.
C.
A column subquery.
D.
A table subquery.