I have a table with a column (int type) called age. This column should hold maximun value 50. If it exceeds then it shouldn\'t update that row.
Means this column sho
You could use CHECK constraint:
CHECK
CREATE TABLE person ( Name VARCHAR(80), Age INT CHECK (Age BETWEEN 5 and 50));