I am using the following query in MySQL and POSTGRESQL.
MySQL SELECT table_name FROM information_schema.tables where table_schema='SmartHome' and table_name like '%House%'
POSTGRESQL. SELECT table_name FROM information_schema.tables where table_schema='public' and table_name like '%House%'.
I want to know equivalent query in Oracle DB.