Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

DDL - TABLE CREATION - 3NF

S567Jul 24 2023

Hi Team,

I am working on Oralce 11g, I am creating a patient insurance table.

Outline is

Patient Can have more than one insurance Id and there can be more than one guarntor for each insurance.

I designed below table and trying to understand if does this deviates from 3NF.

create table ptnt_insr_grntr_details
(
ptnt_insr_grntr_id int primary key,
ptnt_id int,
insr_id int,
grntr_id int,

created_by varchar(100),

update_by varchar(100)

)

Your suggestions are helpful.

Thanks

Comments
Post Details
Added on Jul 24 2023
10 comments
361 views