My original question can be found here , for which I have excellent answers, ideas and tips.
As part of a feasibility study, I began to convert my circuits in order to use my data. In this case, I had some other problem.
In my original question, my example was simple, with no real relational references. In an attempt to save an example of my previous question, I will now continue the "Name" part in another table.
So now my data is getting:
Person
ID UINT NOT NULL,
NameID UINT NOT NULL,
DOB DATE NOT NULL,
Email VARCHAR(100) NOT NULL
PersonAudit
ID UINT NOT NULL,
NameID UINT NOT NULL,
DOB DATE NOT NULL,
Email VARCHAR(100) NOT NULL,
UserID UINT NOT NULL,
PersonID UINT NOT NULL,
AffectedOn DATE NOT NULL,
Comment VARCHAR(500) NOT NULL
Name
ID UINT NOT NULL,
FirstName VARCHAR(200) NOT NULL,
LastName VARCHAR(200) NOT NULL,
NickName VARCHAR(200) NOT NULL
NameAudit
ID UINT NOT NULL,
FirstName VARCHAR(200) NOT NULL,
LastName VARCHAR(200) NOT NULL,
NickName VARCHAR(200) NOT NULL,
UserID UINT NOT NULL,
NameID UINT NOT NULL,
AffectedOn DATE NOT NULL,
Comment VARCHAR(500) NOT NULL
In the graphical interface, we could see the following form:
ID : 89213483
First Name : Firsty
Last Name : Lasty
Nick Name : Nicky
Date of Birth : January 20th, 2005
Email Address : my.email@host.com
Can change:
- Only for the 'name' part
- Only for the man part
- For parts "name" and "person"
'1', NameAudit . , Person PersonAudit .
"2", PersonAudit Person . , Name NameAudit .
"3", .
100 , , . , . , .
, , NameID Person NameAudit ( ).
.
, - ?