Does it have to be in a single query. You could use a Union query and
then total the results in your program.

Select Count(Field1) 
>From Table1 
Union Select Count(Field1) 
>From Table2;

>>> "Rick Baranowski" <[EMAIL PROTECTED]> 11/12/02 5:10:14 PM
>>>
Hello all,

Does anybody have a SQL string to count the rows in two different
tables and
give you a total number of rows? I have been trying to find an answer
for a
couple of days and seems like a simple string.

Thank you

Rick


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail
<[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to