Is this line correct?
MarketData INNER JOIN Contacts on MarketData.CustID=Contacts.ContactID WHERE

Or should it be:
MarketData INNER JOIN Contacts on MarketData.CustID=Contacts.CustID WHERE

JFernando
** sql **


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:Sam4Software@;aol.com]
Sent: November 7, 2002 16:18
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: SQL Query


Hi,

I have the following SQL query, that returns the correct records on Access,
but when I use it with MySQL, it returns duplicate records, and it skips the
required records.

SearchSQL=select
MarketData.CustID,Contacts.ContactID,Contacts.CustID,MarketData.Nickname,Mar
ke

tData.Occupation,MarketData.Country
,County,MarketData.Forename,MarketData.Surname,MarketData.Email FROM
MarketData INNER JOIN Contacts on MarketData.CustID=Contacts.ContactID WHERE
Contacts.CustID=6115

Regards,



Sam

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