SYSCHECK system table

CREATE TABLE SYS.SYSCHECK (
	check_id unsigned int NOT NULL,
	check_defn long varchar NOT NULL,
	primary key( check_id )
)

Each row identifies a named check constraint in a table.

check_id An identifier for the constraint.

check_defn The CHECK expression.