seahorse123
Programmer
I have two tables: tb1, tb2
"tb1" contains fields:
user,
project,
lastupdate
"tb2" contains fields:
user,
profile,
address
"tb1": each user may have multiple projects, with different update time.
Now I want to join this two tables to list all users with profile, address and the latest project update time.
How to write SELECT statement? thanks.
"tb1" contains fields:
user,
project,
lastupdate
"tb2" contains fields:
user,
profile,
address
"tb1": each user may have multiple projects, with different update time.
Now I want to join this two tables to list all users with profile, address and the latest project update time.
How to write SELECT statement? thanks.