Filed under Uncategorized

General Integrity Constraints

Check: A user defined constraint on a single variable or a relationship among several variables. Not Null: Missing values are not allowed Primary Key: Values for this variable must unique and non-missing. Unique: Values for this variable must be unique. proc datasets library=work nolist; modify mydata; ic create ic_gender = check (where=(gender in(‘F’,’M’))); ic create … Continue reading