• Holiday Schedule

    Your code gophers will be away for the next couple of weeks so support will be sporadic. We should be fully back online by the end of September.

  • A new version of Full Calendar is now available.

    See the details here

filter duplicate records

von Horst

Member
how can I create a filter view of a list that shows only records containing duplicate data within a specified field?

using this pre-filter query:
SELECT IP, COUNT(IP) FROM joomla6 GROUP BY IP HAVING COUNT(IP) > 1

what am I missing?
 
The prefilter query won't work in the way you are trying to use it.
The only way I can think of achieving this would be to create a mySQL view and link a fabrik list to that.
 
Back
Top