Home > Net >  Why can I not add a check constraint that makes the user enter an email ending in a specific address
Why can I not add a check constraint that makes the user enter an email ending in a specific address

Time:04-01

Implementing: An employee email address should use the company domain. That is, the email address should end with 'abcco.com'.

alter table employee
add constraint emp_email_check check (co_email in ('           
  • Related