postgresql7.1
select bea.valid_p, bea.frequency, bea.keywords, bt.topic, bea.rowid
from bboard_email_alerts bea, bboard_topics bt
where bea.user_id = :user_id
and bea.topic_id = bt.topic_id
order by bea.frequency
select cea.valid_p,
ad.domain,
cea.alert_id,
cea.expires,
cea.frequency,
cea.alert_type,
cea.category,
cea.keywords
from classified_email_alerts cea, ad_domains ad
where user_id = :user_id
and ad.domain_id = cea.domain_id
and current_timestamp <= expires
order by expires desc