8. SQL Statements
:
DROP INTEGRITY
:
DROP INTEGRITY Examples
Share this page
DROP INTEGRITY Examples
1.
Drop integrity constraints 1, 4, and 5 on the job table.
DROP INTEGRITY ON job 1, 4, 5;
2.
In an application, drop all the constraints against the exhibitions table.
EXEC SQL DROP INTEGRITY ON exhibitions ALL;