I have the below query from Oracle query point of view is that I have created a constraint on table BOA_INVOICE
as shown below
ALTER TABLE BOA_INVOICE
ADD CONSTRAINT CK_INVOICE_SOURCE_SYSTEM
CHECK (SOURCE_SYSTEM IN ('PCE', 'PDS', 'WALLSTREET', 'SYSTEM X & ECOTRADE'));
Now this constraint is added successfully for table BOA_INVOICE
but the problem is that when I see the constraint definition in Oracle developer it is shown as shown below
SOURCE_SYSTEM IN ('PCE', 'PDS', 'WALLSTREET', 'SYSTEM X null')
Now when I carefully observe the last value was SYSTEM X & ECOTRADE
but in the constraint definition in oracle developer I can see it was displayed as
SYSTEM X null
.
Please advise how can i correct this to SYSTEM X & ECOTRADE
in the constraint definition