Skip to content
Advertisement

How to denormalized data in SQL query

I have a table that has Clinic Names and Doctor Names. one clinic can have many doctors. I need to split this data into two tables. one with clinic info and the other with Doctor info

trying to do this in a SQL query

Table CLINIC_DOC:

I want to split the data into the following tables like this:

Table ClinicsData:

Table DoctorData:

Advertisement

Answer

Assuming that the ID columns (ClinicID and DocID) are automatically generated and that the clinic names are unique (i.e there are no two clinics with the same name in the portion of the real world your data represents) you can try:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement