SELECT t1.id, t1.field FROM mytable as t1, mytable as t2 WHERE t2.id > t1.id AND t1.field = t2.field ORDER BY t1.id;
You have to join the table to itself with aliases, and I'll presume you have some sort of primary key, some people put t1.id != t2.id but the > method makes much more sense if you think about it.
You can also do things with GROUP BY on a field and use HAVING numthings > 1 but just try that for now.