user3841039
user3841039

Reputation: 43

How to make a many to one relationship in oracle apex?

I have two tables work and projects. The column that they have in commen is row_id. how do i take the row_id from work and use it in projects also?

Upvotes: 0

Views: 1861

Answers (1)

Pars
Pars

Reputation: 413

Create Foreign key constraint on row_id in project table,

for foreign key constraint refer ORACLE/PLSQL: FOREIGN KEYS

Hope this Helps..

Upvotes: 1

Related Questions