Re: [PHP-DB] select query across multiple tables

2004-08-26 Thread Cole S. Ashcraft
Thanks! It works Cole On Thu, 2004-08-26 at 16:45, [EMAIL PROTECTED] wrote: > > I'm trying to pull all the records from the table class where classID is > > not equal to the value of classID in the table assignment. > > > Currently, I have 'select class.classID, class.classDesc from class, > >

Re: [PHP-DB] select query across multiple tables

2004-08-26 Thread jeffrey_n_Dyke
> I'm trying to pull all the records from the table class where classID is > not equal to the value of classID in the table assignment. > Currently, I have 'select class.classID, class.classDesc from class, > assignment where assignment.classID >= class.classID and > assignment.assignmentID=$ass

[PHP-DB] select query across multiple tables

2004-08-26 Thread Cole S. Ashcraft
I'm trying to pull all the records from the table class where classID is not equal to the value of classID in the table assignment. Currently, I have 'select class.classID, class.classDesc from class, assignment where assignment.classID >= class.classID and assignment.assignmentID=$assidn'. $as