0

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?

  1. should I define 3 tables with 1-to-1 relation (like above) or create just one big table?

and

  1. what is the best practice in Oracle Apex (in wizard steps forms) for this purpose?
kiared
  • 1
  • 2

1 Answers1

0

If you are sure that all three tables will remain have common attributes then the option of single table is fine. More detail can be find here

Community
  • 1
  • 1
Muhammad Muazzam
  • 2,810
  • 6
  • 33
  • 62