I have a table called person, one of the attributes is years_worked.

I need to find a way to restrict years_worked from being decreased, so that a trigger/assertion (not sure what to use here) will only allow increases on updates.

link|improve this question

50% accept rate
2  
What RDBMS are you using? – Martin Smith Jan 25 at 18:22
@pltm_dev I don't think you understood Martin's question. Which database engine do you need this written for?? – Shark Jan 25 at 18:28
I have understood it, no particular engine yet, any abstract answer (such as yours) is good for me – pltm_dev Jan 25 at 18:31
2  
There isn't really a "standard" answer. A SQL Server answer will probably look nothing like one for Oracle. – Martin Smith Jan 25 at 18:35
feedback

1 Answer

up vote 1 down vote accepted

The below code will just revert all years_worked updated values that don't fall into your restriction back to what they were before the update. This is for SQL Server, I can't speak for other RDBMS'.

create trigger RestrictYearsWorked
on person
after update
as

    update person
    set years_worked = d.years_worked
    from person p
    inner join deleted d
    on p.yourIdCol = d.yourIdCol
    where p.years_worked < d.years_worked

go
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.