A driver's salary may not exceed Rs. 25,000 p.m. This is a
A driver's salary may not exceed Rs. 25,000 p.m. This is a / an
Aintegrity constraint
Breferential constraint
Cfeasibility constraint
Dlogical constraint.
All DiscussionsClick here to write answer
Answer : integrity constraint
Explanation:
Integrity Constraints are used to apply business rules for the database tables.
The constraints available in SQL are Foreign Key, Not Null, Unique, Check.
Check Constraint :This constraint defines a business rule on a column. All the rows must satisfy this rule. The constraint can be applied for a single column or a group of columns.Syntax to define a Check constraint: [CONSTRAINT constraint_name] CHECK (condition) example: [CONSTRAINT salary] CHECK salary<25000
All Comments
Post your answers here:
Post