I have 2 tables. CustomerMaster and InvoiceMaster

I need a query that gives me all the customer for whom we had more than 10 invoices for a specific period. It would be something like this.

Select * from customermaster where count (select count from invoicemaster) >10 where invoicemaster.date >= 1March 2003

Please help

Chris