In Oracle Apex, I have some related tables i.e:
**Person Table**
Id
Name
**Person_Contact Table**
Id
PersonFK
Tel
Address
**Person_Account Table**
Id
PersonFK
BankName
AccountNumber
these are 1-to-1 tables and PersonFK is the Foreign Key. Now, I want to create a wizard with 3 steps. how can I do this?
- should I define 3 tables with 1-to-1 relation (like above) or create just one big table?
and
- what is the best practice in Oracle Apex (in wizard steps forms) for this purpose?