how do i do 1 to many relationship?? i have this SQL syntax " i may need to add many issues per customer" so this is what i have
                          Please help
SELECT *
FROM
 mcsdata.customers
 INNER JOIN mcsdata.issues ON (mcsdata.customers.id = mcsdata.issues.id)
WHERE
 (mcsdata.customers.id = mcsdata.issues.id)

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

Reply via email to