SQL SERVER – Tips from the SQL Joes 2 Pros Development Series – All about SQL Constraints – Day 22 of 35

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - All about SQL Constraints - Day 22 of 35 joes2pros4 Answer simple quiz at the end of the blog post and –

Every day one winner from India will get Joes 2 Pros Volume 4.

Every day one winner from United States will get Joes 2 Pros Volume 4.

Check Constraints

My old track coach would tell us to give 110% effort. However, had my math teacher heard this, he would have explained that a percentage value exceeding 100% in this context is not possible. For the coach it was a fun way that implies that you will give all you have, but then somehow you will give 10% more than “all.” Does that mean 110% is always an incorrect value? No, it depends on the situation. For example, this year’s sales could be 110% of last year’s sales. The range of acceptable values defined for a field depends upon the context.

Let’s consider negative numbers for a moment. If a medical form asked for my height in inches, and I wrote negative -67.5, you would think this was either a typo or a joke.  -67.5 would be easily accepted by a decimal or float data type, but in the context of height, a negative number simply isn’t acceptable. A person’s height will always be a positive number, never a negative number. For that reason, a “Height” field in a database should be restricted to only positive values. If you want to add your own logic on top of a data type, you can use what is known as a check constraint.

In the StateList the “District of Columbia” record should consist of 68 square miles of land. However, we see a negative LandMass value for that record and a few other records.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - All about SQL Constraints - Day 22 of 35 j2p_22_1

Similar to the concept of height, there really is no such thing as a negative land mass (coastal erosion anomalies aside).  We know that the absolute value for each LandMass number in our table is correct, so we essentially just need to clean up any negative figures to positive numbers (e.g., -68 should be 68).  The UPDATE statement below multiplies the LandMass value by -1 where the existing LandMass value is < 0 (less than zero). The SELECT query in the below Figure shows that no negative LandMass values remain following the update.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - All about SQL Constraints - Day 22 of 35 j2p_22_2

Creating Check Constraints

Our LandMass data has been scrubbed and now we want to create the check constraint to maintain this field’s data integrity during future inserts or updates. We want SQL Server to say “Yes” to legitimate LandMass values (even if 2 states are the same size) but “No” to any update or insert resulting in a negative LandMass values. The code below will check to see if the value is positive before accepting the transaction. The preferred naming convention for the check constraint is CK for check (constraint) plus the table name and the fieldname, with each part separated by an underscore: CK_StateList_LandMass.

ALTER TABLE StateList
ADD CONSTRAINT CK_StateList_LandMass
CHECK(LandMass >=0)

To prove that our check constraint will prevent DML statements which try to introduce negative LandMass numbers, we will run a quick test. Below you see an UPDATE statement which attempts to change some of the LandMass values into negative numbers. The CK_StateList_LandMass check constraint guards against updates which would result in invalid LandMass values.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - All about SQL Constraints - Day 22 of 35 j2p_22_3

In the figure below we see the CK_StateList_LandMass check constraint that we just added. In Object Explorer, expand the “Tables” folder of the JProCo database and expand Constraints.  Note: You may need to right-click to refresh the Constraints folder and see newly created items.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - All about SQL Constraints - Day 22 of 35 j2p_22_4

Let’s consider other errors which could occur in our LandMass data. Our largest current LandMass is Alaska at just over 650,000 square miles. A typo adding one or two extra zeros would really be a problem (i.e., distorting Alaska’s LandMass to either 6 million or 65 million miles).  Let’s attempt a bad UPDATE to help us recognize that our check constraint isn’t currently protecting our table from these kinds of mistakes.

UPDATE StateList
SET LandMass = 65642500
WHERE StateID = 'AK'

Since the UPDATE succeeded, our StateList table now incorrectly indicates that Alaska’s LandMass exceeds 65 million square miles. While constraints can’t guard against all potential data integrity problems, we should constrain the upper limit of the LandMass field in this example to disallow such glaringly large, erroneous values. Before proceeding, let’s reset Alaska’s LandMass back to its proper value:

UPDATE StateList
SET LandMass = 656425
WHERE StateID = 'AK'

Changing Existing Check Constraints

We want to add another condition to CK_StateList_LandMass, our existing check constraint for the LandMass field. There isn’t a T-SQL statement which allows us to directly modify our existing check constraint.  But we can easily accomplish our purpose by dropping the current constraint object and then rebuilding it with both conditions (values for LandMass must be non-negative and less than 2 million square miles).  Re-create CK_StateList_LandMass with expressions covering both of the conditions which we want the constraint to prevent (LandMass >= 0 and LandMass < 2000000) with the following formula.

ALTER TABLE StateList
DROP CONSTRAINT CK_StateList_LandMass
GO
ALTER TABLE StateList
ADD CONSTRAINT CK_StateList_LandMass
CHECK(LandMass >=0 AND LandMass < 2000000)
GO

To test whether our revised constraint works, let’s reattempt our earlier UPDATE statement. Our second requirement (LandMass < 2000000) is similarly enforced by the revised check constraint. Values in excess of 2 million (square miles) are disallowed for the LandMass field. You may also wish to perform additional testing to observe the check constraint allows valid transactions into the StateList table.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - All about SQL Constraints - Day 22 of 35 j2p_22_5

Note: If you want to setup the sample JProCo database on your system you can watch this video. For this post you will want to run the SQLProgrammingChapter1.0Setup.sql script from Volume 4.

Question 22

You have a table named Feedback that contains every record of how a customer felt about their purchase. One field is called Complaint, where 0 is no complaint and 1 is a complaint. You also have a field called Rating that ranges from 0 to 100. If a customer complains they should not be giving a perfect rating of 100. If they complain then they can enter a score between 0 and 90. If they don’t then it can be between 1 and 100. Which check constraint would you use?

  1. CHECK (Rating BETWEEN 1 and 100)
  2. CHECK (Rating <=90 AND Complaint = 1)
  3. CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )
  4. CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1)
    AND ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

Rules:

Please leave your answer in comment section below with correct option, explanation and your country of resident.
Every day one winner will be announced from United States.
Every day one winner will be announced from India.
A valid answer must contain country of residence of answerer.
Please check my facebook page for winners name and correct answer.
Every day one winner from India will get Joes 2 Pros Volume 4.
Every day one winner from United States will get Joes 2 Pros Volume 4.
The contest is open till next blog post shows up at which is next day GTM+2.5.

Reference:  Pinal Dave (https://blog.sqlauthority.com)

Joes 2 Pros, SQL Scripts
Previous Post
SQL SERVER – SQL Query Techniques For Microsoft SQL Server 2008 – Book Available for SQL Server Certification
Next Post
SQL SERVER – Tips from the SQL Joes 2 Pros Development Series – Introduction to Views – Day 23 of 35

Related Posts

75 Comments. Leave new

  • Nakul Vachhrajani
    August 22, 2011 11:48 am

    Correct Answer: #3
    Reason: Only one of the Complaint conditions will be true – Either a customer complaints or not.

    Country of residence: India

    Reply
  • Partha Pratim Dinda
    August 22, 2011 11:48 am

    Ans: 3
    CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    Others are incorrect according to query requirements.
    1st one only check the rating field value in between 1 and 100
    neither check complaint 1 nor complaint 0,
    2nd one only check the value if complaint is 1 and it also allow user to put negative value.
    3rd one check both condition of complaint and also its corresponding rating.
    4th one check both condition and its rating all time whether complaint 0 or 1.but this condition never satisfy because at time complain may not be 0 and 1
    .

    so 3rd one is only write answer.

    Partha
    India.

    Reply
  • Option 3 is Correct

    Arjun
    India

    Reply
  • Rajesh Mohanrangan
    August 22, 2011 11:54 am

    Correct Ans:3

    3.CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    Regards
    Rajesh
    From India

    Reply
  • Shatrughna Kumar
    August 22, 2011 12:00 pm

    Correct answer is option #3.

    3.CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    New Delhi
    India

    Reply
  • Answer 3

    3.CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    Country : India

    Reply
  • The Correct Answer Is Option – 3

    Thanks,
    Narendra(India).

    Reply
  • The Correct Answer is
    option #3

    Reply
  • Hemanth Gangabathula
    August 22, 2011 12:56 pm

    None will be right, but still if we have to select

    The answer is

    2.CHECK (Rating <=90 AND Complaint = 1)

    as we need to have check constraint on rating to 90 only when there is a complaint, if we have no complaint then we will have no checks on rating so that we can enter untill 100.

    but still it doesn't satisfy the for Complain=0 condition i.e. between 1 and 100 and even option 3 is not be correct as for Complaint=1 it takes values between 1 and 90, but as mentioned in the question it should be between 0 and 90

    Hemanth
    Hyderabad, India

    Reply
  • Answer: 3
    3) CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )
    Romania

    Reply
  • Anish Shenoy.P
    August 22, 2011 2:09 pm

    Hi Sir,

    None of the above options are correct.

    According to the question
    Point no 1 : If they complain then they can enter a score between 0 and 90.
    That is the Rating should be between 0 and 90 when Complaint = 1

    Point No 2 : If they don’t then it can be between 1 and 100.
    That is the Rating should be between 1 and 100 when Complaint = 0

    So the correct check constraint would be :

    CHECK ( (Rating BETWEEN 0 and 90 AND Complaint = 1)
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    P.Anish Shenoy,
    INDIA, Bangalore, Karnataka

    Reply
  • The correct answer is “None of the above”

    All the options try to query 1 t0 100 or 90. But in the question you have asked from 0 to 100 or 0 to 90.
    So none of them is the right answer

    Thanks & Regards
    Santhosh
    India

    Reply
  • Option #3 is correct:

    3.CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    Sonnie Avens
    New York, USA

    Reply
  • Correct option is 3.

    Shilpa
    India.

    Reply
  • Gopalakrishnan Arthanarisamy
    August 22, 2011 3:14 pm

    Correct answer is # 3.

    CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    Because we want that the users introduce a score between 0 and 100 if they do not complain.
    But if they complain, then they should not be able to give a perfect rating of 100 and they can can enter a score between 0 and 90.

    Here, we can consider,

    Compliant = 1
    Non-Compliant = 0

    Gopalakrishnan Arthanarisamy
    Unisys, Bangalore, India

    Reply
  • Correct Answer Option 3

    CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    This will check that if complaint =1 , then rating is between 1 and 90(coded and an AND operation)
    or if Complaint =0 , rating is between 1 and 100 (again coded with AND operation)

    Both these conditions are the possible conditions. hence the OR contion

    cochin,INDIA

    Reply
  • Ans : 3.CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    First it will check Complaint Yes, then rating should be between 1 to 90 OR complaint 0 then rating can be 1 to 100.

    Reply
  • The correct answer is “None of the Above”.

    option 1 and 2 are obviously not considering all the conditions to check.

    option 3 is close but it will fail when complaint =1 and rating =0 (this is specified in the question that itself)

    Option 4 is using AND condition which will not allow any values to be inserted in the table. So this is totally wrong.

    The ideal solution should be:

    CHECK ( (Rating BETWEEN 0 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    Chetan Jain (India)

    Reply
  • Ans: None of the Above
    i thought Option 3 will be the corret ans.. as it is checking Coplaint and Ranking Range, but after reading the question agian i come to know that OPTION 3 is not correct ans

    correct Ans:
    3.CHECK ( (Rating BETWEEN 0 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 0 and 100 AND Complaint = 0) )

    Reply
  • Answer: Option 3
    CHECK ( (Rating BETWEEN 1 and 90 AND Complaint = 1) )
    OR ( Rating BETWEEN 1 and 100 AND Complaint = 0) )

    First Case:
    Step1: One field is called Complaint, where 0 is no complaint and 1 is a complaint.

    Step2: If a customer complains they should not be giving a perfect rating of 100
    – So compliant is 1 and not to 100

    Step3: If they complain then they can enter a score between 0 and 90.
    – So still compliant is 1 and score between 0 to 90

    Second Case:
    Step4: If they don’t then it can be between 1 and 100
    – So the no compliant is 0 and rating between 1 to 100

    Step5: It can be Compliant OR no compliant

    So the answer is Option 3.

    -Devarajan (India).

    Reply

Leave a Reply