Get SQL tables only not views?
SHOW TABLES
This lists the view 开发者_StackOverflowalso.
But I don't want the view in the list.
How can I write the Query and get that?
I am using Mysql 5 and MyIsAm is my DB engine.
This should work:
SELECT table_name FROM information_schema.tables WHERE table_type = 'BASE TABLE';
If you need to filter it based on schema, then you can add:
AND TABLE_SCHEMA = 'schema_name'
Take a look at the information_schema.tables table and you'll see other ways to filter the list.
精彩评论