I have an Oracle table called users, with columns
name, location, organization, valid_from, valid_to, active.
What I am trying to do is : if there are two records with same name, location, organization but with valid_to, valid_from intervals overlapping, to set the active status of each record to 'NOK'. Here's how i am trying to do it :
UPDATE table SET active= 'NOK'
WHERE
(name, location, organization) IN (
SELECT t1.name, t1.location, t1.organization
FROM table t1
WHERE (valid_from > t1.valid_from and valid_to < t1.valid_to )
GROUP BY t1.name, t1.location, t1.organization
HAVING COUNT(*) > 1) ;
But this doesn't seem to do what I desire. What am I doing wrong ?
Thank you!