Answers for "how to show all views in mysql"

SQL
1

mysql show views

SHOW FULL TABLES 
WHERE table_type = 'VIEW';
Posted by: Guest on November-03-2020
0

list mysql tables and views

SHOW TABLES;

-- With type TABLE or VIEW
SHOW FULL TABLES;
Posted by: Guest on December-11-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language