Hi,
I have 4 table,
1. t_Config - PK_Conf_id -> FK_Link_id, FK_int_id, FK_Coi_id
2. t_link - PK_Link_id -> FK_Conf_id
3. t_int_link - PK_int_id ->FK_Conf_id, FK_Link_id,
4. t_coi_link - PK_Coi_id -> FK_Conf_id, FK_int_id
PK - Primary Key
FK - Foreign Key
first table t_Config having foreign key from all other 3 tables
and other three tables have foreign key from first table
All foreign keys from above tables allow null value
t_Config table is main table, Its having atleast one foreign key value present.
From other three tables at least one should have record with FK_Conf_id value from t_Config table.
I am not able to delete it individualy, How I can delete records from above tables?
Please help.
Thanks,
Vikas Tayde