I\'m looking for a way to list all views in a database.
Initially I found and tried an answer on the MySQL forums:
SELECT table_name FROM information
Another way to find all View:
SELECT DISTINCT table_name FROM information_schema.TABLES WHERE table_type = 'VIEW'