I hava a table USER:
select t.* from user t;
uid uname
1 tom
2 jim
3 bob
4 lily
and table TOYS
select t.* from toys t;
tid uid tdate
1 1 7/12/15
2 1 6/12/15
3 2 9/12/15
4 2 10/12/15
5 3 12/12/15
now I want
uid tid uname tdate
1 2 tom 6/12/15
2 3 jim 9/12/15
3 5 bob 12/12/15
4 lily
what should I do? (I use oracle database);