• Create the table as usual, then add the FKs using ALTER TABLE:

    alter table MyTable

    add constraint MyTable_MyColumn_FK FOREIGN KEY ( MyColumn ) references MyOtherTable(PKColumn)