N
Nigel Molesworth
I'm a tutor, I've got a "Student" database. The Student table has a
unique PK, the ID of the students. There are many fields within the
DB, all the normal stuff you would expect, address, phone etc.
When I have marked their assignments, I can download a CSV file
containing all the revised data, but I don't want to overwrite the
earlier data as I've changed some of it. All I want is to incorporate
the new data into the table. So my plan was to delete all the columns
in the CSV except the PK and the assignment mark, as below:
ID AS1
X3781154 95
X8245243 94
R9613369 92
W2740708 83
....
When I try to import this, I get a PK violation.
Is there a way around this?
unique PK, the ID of the students. There are many fields within the
DB, all the normal stuff you would expect, address, phone etc.
When I have marked their assignments, I can download a CSV file
containing all the revised data, but I don't want to overwrite the
earlier data as I've changed some of it. All I want is to incorporate
the new data into the table. So my plan was to delete all the columns
in the CSV except the PK and the assignment mark, as below:
ID AS1
X3781154 95
X8245243 94
R9613369 92
W2740708 83
....
When I try to import this, I get a PK violation.
Is there a way around this?