SHOW TABLES gives you tables+views.
SHOW TABLES
How do I retrieve only tables?
show full tables where Table_Type = 'BASE TABLE'
verbatim.
Or put another way;
show full tables where Table_Type != 'VIEW'
http://dev.mysql.com/doc/refman/5.0/en/show-tables.html
2.1m questions
2.1m answers
60 comments
57.0k users