Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

can check constraints reference other tables

-- Check constraints cannot refer to other tables, but can call a function
alter table YourTable
add constraint chk_CheckFunction
check (dbo.CheckFunction() = 1)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #constraints #reference #tables
ADD COMMENT
Topic
Name
5+5 =