I have the following table:
Patient(patientNumb, SS, name, dateOfBirth, address, dateAdmitted, clinic)
I'd like to insert all the values into another table called PatientB using:
Code:
INSERT INTO PatientB SELECT * FROM Patient
but the problem is the integrity constraint on patientNumb and clinic...is there a way that I can insert all those and updating the value at the same time or bypass it?