Discuss Creating a Composite Key..... in the Oracle Development forum on Dev Shed. Creating a Composite Key..... Oracle Development forum discussing administration, Oracle queries, and other Oracle-related topics. Oracle is known as one of the most robust multi-platform relational databases available.
Posts: 4
Time spent in forums: < 1 sec
Reputation Power: 0
Creating a Composite Key.....
CREATE TABLE addresses OF address
(
houseNum PRIMARY KEY
);
This is how I create a primary key when creating a table.
Does anyone know how I would create a primary key using both the house number and say the telephone number (ie. telNo), which in effect would be a composite key????