Using the 2 tables below i would like to show a list of names with the next available time showing next to their name. Only 1 result per name. Can you help? Thanks Bobby
user table
| user_ID | name
| 1 | Smith
| 2 | Jones
times_available
| ID | user_ID | time_avail |
| 1 | 2 | 01:30 |
| 2 | 2 | 02:30 |
| 3 | 3 | 02:30 |
| 4 | 3 | 03:30 |
| 5 | 3 | 04:30 |
Display next available time for each name
| user_ID | time |
| Smith | 02:30 |
| Jones | 02:30 |
@Clodoaldo has a good answer, but I need to also show the names that do not have upcoming time_avail