Maybe something like this would work for you:
SELECT *
FROM table
WHERE data1 IN (SELECT data1
FROM table
GROUP BY data1
HAVING count(*)>=3);~snowbiwan -- View this message in context: http://sqlite.1065341.n5.nabble.com/help-with-query-tp79978p79979.html Sent from the SQLite mailing list archive at Nabble.com. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

