Hopefully someone out there can help me as I haven't been able to find any 
documentation on this that applies.

I am running MySQL version 3.22.32 on a FreeBSD v4.4 machine. I am getting 
"Error 2013: Lost connection to MySQL server during query" when I run the 
following query:

select distinct         Product.MFG_ID,
                MFG.Name
        from    Product,
                Cat_link,
                MFG
        where   MFG.ID=Product.MFG_ID
        and     Product.ID=Cat_link.PROD_ID
        and     Cat_link.CAT_ID="3"
        and     Product.Status="A"
        order by MFG.Name;

Does anyone have any ideas? Thanks!

TW


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