Class - Generation specific to Oracle

 

Primary key

The primary key is directly implanted after using the SQL89 norm instructions: CONSTRAINT ... PRIMARY KEY.

 

For example:

ALTER TABLE class ADD (

    CONSTRAINT class_PK PRIMARY KEY (attribute1, attribute2)

) ;