Here is my SQL query:
SELECT pts.pts_id,
pts.pts_name,
meds.*
FROM pts
LEFT JOIN meds
ON pts.pts_id = meds.pts_id_fk
WHERE pts.id_fk = $id
AND pts_current = 1
Table pts (ie Table A) has the following data:
pts_id time
1 Joe
2 Jack
3 Jill
Table meds (ie Table B) has the following data:
pts_id_fk time
1 7AM
1 8AM
1 9AM
2 7AM
2 10AM
3 11AM
I would like to ORDER BY the result of this query based on the time.
Any suggestions how to do this?
1 Answer