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