Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to create system lookup tables

Muhammad.RizwanJul 14 2014 — edited Jul 14 2014

Hi,

Please can someone advise on the best approach of creating system lookup tables for an application.

I've created below tables but they don't handle scenarios where a lookup is dependent on another lookup. such as Area, City & Country

create table lookup_code

(lookup_code varchar2(30 byte),

lookup_description varchar2(50 byte)

);

create table lookup_code_detail

(

lookup_code varchar2(30),

lookup_code_value varchar(30),

lookup_code_desc varchar2(30)

);

thanks

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 11 2014
Added on Jul 14 2014
8 comments
2,190 views