How to make an efficient check constraint for an e-mail field in Firebird (if field value not null)?
thanks, Wilfried
|
|
|
You could use the SIMILAR TO operator to test against regular expression pattern, something like
|
|||||||
|
|
IMHO this kind of validation should take place in the application code, and not in the database. Anyway, the suggestion approach with a regular expression seems nice ! |
|||||||
|