Answers for "can check constraints reference other tables"

0

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)
Posted by: Guest on February-17-2021

Code answers related to "can check constraints reference other tables"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language