Get all tables in Redshift

Reading Time: < 1 minutes

Get all tables from a given schema

      
SELECT t.table_name
FROM information_schema.tables t
WHERE t.table_schema = 'mySchema'
ORDER BY 1
      


About the author

Andrés Canavesi
Andrés Canavesi

Software Engineer with 15+ experience in software development, specialized in Salesforce, Java and Node.js.


Related posts


Leave a Reply

%d bloggers like this: