I have two tables emp_master and relations_detai ls having Ins_no as a common field ............... ....
emp_master contain all info related to employee and relation_detail s contain details of all family members of employee .....
For some reason i have to make a single table for both
The Problem is that i have already tablew entered in 2 tables and now i want all entries as single , how can i do that ?
emp_master contain all info related to employee and relation_detail s contain details of all family members of employee .....
Code:
emp_master Ins_no Name 123 xyz relation_detail Ins_no name relation 123 xy brother 123 xz brother 123 yz sister 123 ab mother
For some reason i have to make a single table for both
Code:
emp_master Ins_no Name relation1 name relation2 name 123 xyz brother xy brother xy
The Problem is that i have already tablew entered in 2 tables and now i want all entries as single , how can i do that ?
Comment