This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ============================================================ | |
Student Information System – Exercise 1.2 | |
Complete SQL DDL with all constraints and concise comments | |
(Oracle SQL Developer compatible) | |
============================================================ */ | |
---------- Table: student ---------- | |
CREATE TABLE student ( | |
id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY, -- artificial numeric key (PK) | |
code VARCHAR2(64) NOT NULL, -- alphanumeric business key (unique) |