Add an unnamed CHECK constraint to make sure that values in column column_2 are greater than 100:
ALTER TABLE table_1 ADD CHECK (column_2 > 100);
Add an unnamed CHECK constraint to make sure that values in column column_2 are greater than 100:
ALTER TABLE table_1 ADD CHECK (column_2 > 100);