Hi dorothy

Your question:
Can you insert into a table that has foreign key constraint without doing anything to the primary key? I have a table that has foreign key columns, can any one tell me if I can insert into those columns without doing anything to the primary keys that are on another table?

Yes you can as long as the inserted value is a value also present in the refered column from the other table.

HTH

Tycho