>select count(*) from t_table>having count(*) > 1500000>>[/snip]>>But want to return a true/false (bool) result.
Off the top of my head:
select count > 1500000 from (select count(*) as count from t_table) as a;
Doug