Number of records: 65000
nbcmdf table:
id_nbcmdf int(10) NOT NULL PRIMARY KEY AUTO_INCREMENT,
ssn char(11),
name char(25) NOT NULL
nbpmdf table:
id_nbpmdf bigint(10) NOT NULL PRIMARY KEY AUTO_INCREMENT,
id_nbcmdf int(10) NOT NULL,
id_nbamdf int(10) NOT NULL,
add_date DATE,
app_date DATE,
eff_date DATE,
stmnt_date DATE,
paid_to DATE,
susp_date DATE,
over_pt char(1),
status char(6),
co_code char(3),
co_code2 char(3),
product char(10),
pc char(2),
face float(10,2),
tprem float(10,2),
mode int(2),
pol_num char(13) NOT NULL,
zip int(5),
chk_no char(8),
age int(3),
reissue char(1),
update1 char(8),
lives int(4),
cwa float(10,2),
escrow float(10,2),
adv float(10,2),
notes char(60)
theres the table structures. Notice that there are multiple policies for each policy holder which is why it is split into two tables.