I have 2 tables like below
table 1: users
id name
1 John
2 Jane
3 Mery
4 Alpha
table 2 : notes
id note owner created
1 alpha alpha 1 2013-02-03 10:30
2 yeah yeah.. 2 2013-02-03 10:35
3 crap crap.. 2 2013-02-03 10:50
2 yeah yeah.. 3 2013-02-03 10:50
3 blah blah.. 3 2013-02-03 10:55
Now i want to show in a list all the users with their latest notes like below
id name note
1 John alpha alpha
2 Jane crap crap..
3 Mery blah blah..
4 Alpha
How can I get this in one query? (PS: I am using PHP for scripting)

