T
tcarter
I need additional help with primary keys.
I have a table with three fields.
Mat_Lib_tbl
**************
1. SSN
2. LibraryID (PK)
3 Name
I want to programmatically change the table design to drop
the "LibraryID" as the primary key and assign the primary
key to be "SSN".
So that the alter table will look like this....
1. SSN (PK)
2. LibraryID
3. Name
How can this be done through code?
I have a table with three fields.
Mat_Lib_tbl
**************
1. SSN
2. LibraryID (PK)
3 Name
I want to programmatically change the table design to drop
the "LibraryID" as the primary key and assign the primary
key to be "SSN".
So that the alter table will look like this....
1. SSN (PK)
2. LibraryID
3. Name
How can this be done through code?