i have two tables like this ->
Categories
-----------
id name
---------
1 --> a
2 --> b
3 --> c
Messages
------------
id catid message
---------------------------
1 --> 1 --> aa
2 --> 1 --> bb
3 --> 1 --> cc
4 --> 2 --> dd
5 --> 3 --> ee
6 --> 3 --> ff
i want to join the tables for get FIRST message from messages table,
i want query result like this ->
-------------------------------
id name message
1 a aa
2 b dd
3 c ee
i found a code
select * from categories c, items i
-> where i.categoryid = c.id
-> group by c.id;
but there isn't any ORDER BY procedure