SHOW VIEWS [IN database_name] LIKE ['regular_expression']
[IN database_name]: Name of the database whose views are to be listed. If this parameter is left blank, the database in the current context is selected.regular_expression: Regular expression for filtering matching views Only the wildcard character * representing any character or expressions representing spaces or special characters between normal characters can be used.SHOW VIEWS;SHOW VIEWS IN db01 LIKE 'view*';
Feedback