I have a table where two specific fields together can not have the same values.
BELIEVE what they are:
- NUM_DIVISION
- COD_INDICATOR
Assuming I have this data:
NUM_PERIODO_LANCAMENTO = 1 , COD_INDICADOR = 1 , COD_CR_PERIODO = 1
NUM_PERIODO_LANCAMENTO = 2 , COD_INDICADOR = 1 , COD_CR_PERIODO = 1
NUM_PERIODO_LANCAMENTO = 3 , COD_INDICADOR = 1 , COD_CR_PERIODO = 1
When I try to register this data
NUM_PERIODO_LANCAMENTO = 1 , COD_INDICADOR = 1 , COD_CR_PERIODO = 2
the constraint error is displayed.
I would like to release this registration, how to do this?