Suppose I have 2 tables: products & services. They have different fields, but have the following in common:<br><br>Inv_no: integer<br>Period: char<br><br>Say I need to determine how many invoices I have for a given period. I want to do get the number of rows in the following query:<br><br>SELECT Inv_no FROM<br>products WHERE Period = 'April'<br>UNION<br>SELECT Inv_no FROM<br>services WHERE Period = 'April'<br><br>Any ideas?