Be Good. Do Good.
SELECT
table_name
FROM
information_schema.tables
WHERE
table_schema = 'abc'
AND
table_type = 'BASE TABLE'
Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...