Summary: in this tutorial, you will learn how to use the SQL Server CHECK constraint to enforce domain integrity. The CHECK constraint allows you to specify the values in a column that must satisfy a Boolean expression. For example, to require positive unit prices, you can use: CREATE TABLE test.products( product_id INT IDENTITY PRIMARY KEY,