1 Answer
- Newest
- Most votes
- Most comments
2
In order to get all the tables in schema "xx.yy", please write the query in following manner: SELECT table_name, table_schema, table_type FROM information_schema.tables where table_schema="xx.yy"
This should help you in getting the desired information.
answered 3 years ago
Relevant content
- AWS OFFICIALUpdated 7 months ago

yes, i can get tables use single quote: SELECT table_name, table_schema, table_type FROM information_schema.tables where table_schema='xx.yy'