Is it possible to use a CHECK constraint to prevent any date that falls on a Sunday? I don't want to use a trigger.
|
|
|
|
|
|
|
Yes, a check constraint can check that the day of the week is not Sunday. Here's an example:
--There are blank spaces to the right of SUNDAY so like or rtrim is needed to match the string.
When you try to insert a date that is on a Sunday, it will say: |
||||
|
|
|
Not sure about the actual constraint, but you can use the function:
to get the day of the week as an integer, then do a small check on it |
||
|
|
