Hello,
I have a ztable with two fields: from , to.
I have to validate the entries, so that the intervals shouldn't overlap.
Example:
I have the entries:
from to
1 7
12 15
Entry allowed: from: 8 to: 11
Entry denied: from: 13 to: 14
What is the easiest way of doing this?
Thank you!