Constraints are defined at which level
-
row, column
-
row, table
-
column, table
-
all of above
C
Correct answer
Explanation
Database constraints can be defined at two levels: column level (specified inline with column definition like 'name VARCHAR2(50) NOT NULL') and table level (specified separately like 'CONSTRAINT pk_emp PRIMARY KEY (emp_id)'). Primary keys and foreign keys often require table-level definition when they involve multiple columns.