0% found this document useful (0 votes)
25 views1 page

SQL Queries

The document describes creating an EMPLOYEE table with columns for EMPCODE, EMPNAME, CITY, and BIRTHDATE, with EMPCODE as the primary key.

Uploaded by

NIMRIT KAUR
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views1 page

SQL Queries

The document describes creating an EMPLOYEE table with columns for EMPCODE, EMPNAME, CITY, and BIRTHDATE, with EMPCODE as the primary key.

Uploaded by

NIMRIT KAUR
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

 CREATE table "EMPLOYEE" (

"EMPCODE" VARCHAR2(4) NOT NULL,

"EMPNAME" VARCHAR2(20) NOT NULL,

"CITY" VARCHAR2(10),

"BIRTHDATE" DATE,

constraint "EMPLOYEE_PK" primary key ("EMPCODE")

You might also like