how to display all views in mysql code example
Example 1: mysql views
CREATE VIEW customerPayments
AS
SELECT
customerName,
checkNumber,
paymentDate,
amount
FROM
customers
INNER JOIN
payments USING (customerNumber);
Example 2: mysql show views
SHOW FULL TABLES
WHERE table_type = 'VIEW';