mysql show views

Solutions on MaxInterview for mysql show views by the best coders in the world

showing results for - "mysql show views"
Ida
11 Feb 2019
1
2        
3            
4        
5     SHOW FULL TABLES 
6WHERE table_type = 'VIEW';
7
Rania
17 Jan 2018
1
2        
3            
4        
5     SELECT * 
6FROM information_schema.tables;
7