Code: Select all
SELECT * FROM `tbl1` GROUP BY `field1`Problem is, there are many same values of `field1` - and I want the one that has `Entered` in the begining - a GROUP BY is picking the last one entered in the database or something like that.
How do I sort within a GROUP BY ?
Thanks