Specifies the foreign key column to which the constraint is applied. The data type of this column must be the same as the data type of the column it references.
ref_table
Specifies the table to which the foreign key refers.
pcolumn_name
Specifies the primary key column in the referenced table. For Salesforce, the primary key column is always the rowId column.
Example
The following example creates the table emp with name, empId, and deptId columns in the current schema. The table contains a foreign key constraint on the deptId column, referencing the rowId in the dept table created in Column Definition. For the operation to succeed, the data type of the deptId column must be the same as that of the rowId column.