You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table stats_tables as
select * from
(select table_schema, table_name, table_type from information_schema.tables)
where
table_name like '%_stats_%'
;