Quiz 11
Question # 1
Q
Which query/ queries will print the views in the MovieIndustry database?
A)
SHOW TABLES IN MovieIndustry
WHERE table_type='VIEW';
B)
SHOW FULL TABLES IN MovieIndustry
WHERE table_type='VIEW';
C)
SELECT * FROM information_schema.tables
WHERE table_type='VIEW';
D)
SELECT VIEWS FROM information_schema.tables;
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.