Shawn

> SELECT CityName, Count(ClientID) as ClientCount
> FROM City
> INNER JOIN Client
>         on City.CityID = Client.CityID
> GROUP BY CityName
> HAVING ClientCount > 30;

Thank you very much,
It should solve by problem... :-)

Ronan



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to