My Oracle skills are less than I'd like but maybe you can help me get to where I need to be:
I have two tables
Options
| OptionID | Description | Default Value |
AccountOptions
| AccountOptionID | AccountID | OptionID | OptionValue |
I will be passing along a SQL Statement along these lines
Insert Into AccountOptions Values(1, 77, 365, 'Blue')
I would like to create a Before Insert Trigger to do the following:
If the OptionValue in the Insert statement is equal to the Default value of Options Table then cancel the entire insert because it's not necessary to overwrite with the default value
If a record for the account for that OptionID already exists for that in the AccountOptions then just update the row instead.
