1 Answer
- Newest
- Most votes
- Most comments
0
Hello,
Instead of SHOW TABLES
, how about using the information_schema table?
SELECT * FROM information_schema.tables WHERE table_schema = 'database'
If you want to pull views separately, query the information_schema.views
table.
Relevant content
- Accepted Answerasked a year ago
- Accepted Answerasked a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
Hi, thanks for your response. That doesn't work.
The view in my database is listed in
information_schema.tables
whileinformation_schema.views
is empty. How is that possible at all?