Oracle Database SQL — Question 223

Which four statements are true regarding primary and foreign key constraints and the effect they can have on table data? (Choose four.)

Answer options

Correct answer: A, D, F, G

Explanation

Option A is correct as both primary and foreign key constraints can indeed be defined at the column and table levels. Option D is also right because a table can have one primary key and multiple foreign keys. Options F and G are true regarding the behavior of child rows during the deletion of parent rows. Options B and C are incorrect as a table can have multiple foreign keys, and foreign key columns do not need to share names with the parent table's primary key columns.