Which of the following statements will return a list of all of the databases with a name that starts
with ‘pro’?
A.
LIST DATABASES WHERE NAME LIKE ‘pro%’
B.
SHOW DATABASES WHERE NAME LIKE ‘pro%’
C.
SELECT DATABASES WHERE NAME LIKE ‘pro%’
D.
LIST DATABASES LIKE ‘pro%’
E.
SHOW DATABASES LIKE ‘pro%’
F.
SELECT DATABASES LIKE ‘pro%’