Quiz 11
Quiz yourself on the stored procedures and testing in MySQL.
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;
Get hands-on with 1400+ tech skills courses.