In oracle database there is a table t, its creat table sql is as follows: create table t ( sno number(3,0) check (sno >=1 and sno <=4) ); If another person want to know the context of the check constraint within table t, How to write this through SQL? thanks