Hi all, i've got a table with offsets of data like this:
dat |offset
1 | 1
69 | 2
70 | 3
80 | 10
69 | 15
If i do a query with group by (omiting the offset) and
filter it with:
having (max(offset) - min(offset)) = 3
where 3 is the number of search terms - 1, it works if I have
unique data, but in the data sample above this won't work.
Any idea?
Thanks in advance