Creating a Table
create table r (A1 D1, A2 D2, ..., An Dn, IC1, IC2, ..., ICk)create table instructor (ID char(5), name varchar(20) not null, dept_name varchar(20), salary numeric(8, 2),
primary key (ID), foreign key (dept_name) references department)Inserting Values
insert into r values (V1, V2, ..., Vn)Last updated