On Monday 23 December 2002 17:54, Robert Berman wrote:
> SELECT Company_ID,
>               COUNT(*)
>     FROM Eric
>     GROUP BY Company_ID;
> +------------+----------+
> | Company_ID | COUNT(*) |
> +------------+----------+
> |       NULL |       10 |
> +------------+----------+
 1 row in set (0.00 sec)

I got different result that looks like correct for me:
mysql> SELECT Company_ID, COUNT(*) FROM Eric GROUP BY Company_ID;
+------------+----------+
| Company_ID | COUNT(*) |
+------------+----------+
|       NULL |        8 |
| 1001000000 |        2 |
+------------+----------+
2 rows in set (0.00 sec)

I tested on v3.23.54




-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Victoria Reznichenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com





---------------------------------------------------------------------
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