I think this should work:
Code:
select t.table_name
from information_schema.COLUMNS c,
information_schema.TABLES t
where c.table_schema = "customers"
and t.table_schema = "customers"
and t.table_type = "BASE TABLE"
and c.table_name = t.table_name
and c.column_name = "yearmonth";
Mike