Hello All! I'm trying to execute a query and am having trouble getting the results I was hoping for....
I'm gonna simplify what I have to hopefully make it easier for you guys to help me with a solution.
2 tables
customers & appointments
each customer can have many appointments but an appointment can only have 1 customer.
ok, so I'm trying to display all the appointments but do not want to show duplicates of customers.
For instance, if 'Jon' has 3 appointments at varying times in the future, I only want to show his closest appointment.
Currently I'm using this JOIN
This of course returns a list of all appts with many occurences of customers. What would be the best way to purge these duplicates out of my query results?Code:INNER JOIN appointments ON appointments.customerID = customer.id ";
I'm coding in php so I guess it could be done there, but just seems it would be more efficient to do it in the query if possible.
Thanks in advance for any guidance or assistance you may be able to provide!
**I should note that I'm still just getting my feet wet with JOINs so I apologize if this is a dumb question. Thanks!









Bookmarks