I have a Database Table containing two three fields..
PID( unique, primary key, Number) , TestNoNumber),Status (String)
Insert a record: 1,1,Present : works fine.
Insert a record: 2,1,Present : works fine.
Insert a record: 1,2,Present : Conflict due to unique and primary kex field.
should I create another table and have a relation with the present table.. or any other better design ?
Thanking in advance
Sudhir.