Create table Table2
(
t_date date,
col2 varchar2(20)
constraint table2_col2_fk references table1(col2)
);


How is this fk references to the pk which contains two fields?