I've created a constraint for Canadian postal code and it works fine, however when I input a US zip code like 1234567
, the record still gets added in. I'm looking for a way to change my constraint so it only accepts 5
numbers ?
Postal_Code varchar2(7) Constraint NN_Investor_PostalCode Null,
Constraint CK_Investor_PostalCode check
(REGEXP_LIKE (Postal_Code, '[A-Z][0-9][A-Z] [0-9][A-Z][0-9]')
or REGEXP_LIKE (Postal_Code, '[1-9][0-9][0-9][0-9][0-9]')),
You may try this
as the check constraint.
Sample demonstration :