table fields=
prefix,name,type,suffix,lowaddr,highaddr,grid#
example records=
N,John Doe,St,,1,200,34
N,John Doe,St,,201,203,35
N,John Doe,St,,204,600,24
S,John Doe,St,,1,3,55
I would like the results of a query to be=
N,John Doe,St,,1,200,34
N,John Doe,St,,204,600,24
S,John Doe,St,,1,3,55
I'd like to omit any "multiple" records that have the same prefix,name,type,suffix information and a difference between lowaddr and highaddr less than 5. But the output needs to include all the fields including the lowaddr,highaddr, and grid#. The output also needs to include "single" records that have a difference between the addresses of less than 5.
Does anyone have any ideas or suggestions how to do this?
TIA!!!
prefix,name,type,suffix,lowaddr,highaddr,grid#
example records=
N,John Doe,St,,1,200,34
N,John Doe,St,,201,203,35
N,John Doe,St,,204,600,24
S,John Doe,St,,1,3,55
I would like the results of a query to be=
N,John Doe,St,,1,200,34
N,John Doe,St,,204,600,24
S,John Doe,St,,1,3,55
I'd like to omit any "multiple" records that have the same prefix,name,type,suffix information and a difference between lowaddr and highaddr less than 5. But the output needs to include all the fields including the lowaddr,highaddr, and grid#. The output also needs to include "single" records that have a difference between the addresses of less than 5.
Does anyone have any ideas or suggestions how to do this?
TIA!!!