Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
8 views
Company Database
COMPANY DATA BASE IS USED FOR SQL
Uploaded by
harinatha778
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
Download now
Download
Save Company Database For Later
Download
Save
Save Company Database For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
8 views
Company Database
COMPANY DATA BASE IS USED FOR SQL
Uploaded by
harinatha778
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
Download now
Download
Save Company Database For Later
Carousel Previous
Carousel Next
Save
Save Company Database For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 4
Search
Fullscreen
SQL DDL File
DROP TABLE DEPARTMENT;
DROP TABLE EMPLOYEE;
CREATE TABLE DEPARTMENT
(
D_ID INT,
D_NAME VARCHAR(20) NOT NULL,
CONSTRAINT DEPRT_ID_PK PRIMARY KEY (D_ID)
);
INSERT INTO DEPARTMENT VALUES (20,'TRAINING');
INSERT INTO DEPARTMENT VALUES (21,'SALES');
INSERT INTO DEPARTMENT VALUES (22,'DIGITAL MARKETING');
INSERT INTO DEPARTMENT VALUES (23,'OPERATIONS');
INSERT INTO DEPARTMENT VALUES (24,'CREATIVE TEAM');
INSERT INTO DEPARTMENT VALUES (25,'BUssiness Dev');
INSERT INTO DEPARTMENT VALUES (26,'FINANCE');
SQL DDL File
CREATE TABLE EMPLOYEE
(
E_ID int,
E_FNAME VARCHAR(15) NOT NULL,
E_LNAME VARCHAR(15) NOT NULL,
E_EMAIL VARCHAR(25),
E_PHONE_NO int,
HIRE_DATE DATE NOT NULL,
SALARY FLOAT,
COMMISSION_PCT FLOAT,
D_ID INT,
CONSTRAINT EMPL_EMP_ID_PK PRIMARY KEY (E_ID),
CONSTRAINT EMP_DEPAT_FK FOREIGN KEY (D_ID) REFERENCES
DEPARTMENT(D_ID)
);
INSERT INTO EMPLOYEE VALUES
(1,'Michael','Smith','
[email protected]
',9997766,'2012-03-29',34000.00,1.0,22);
INSERT INTO EMPLOYEE VALUES
(2,'William','taylor','
[email protected]
',77665522,'2012-05-25',45000.00,2.0,23);
INSERT INTO EMPLOYEE VALUES
(3,'Richard','Miller','
[email protected]
',876297,'2012-04-19',55000.00,0.4,24);
INSERT INTO EMPLOYEE VALUES
(4,'Joseph','K','
[email protected]
',66554433,'2013-02-27',36000.00,0.5,22);
INSERT INTO EMPLOYEE VALUES
(5,'John','Williams','
[email protected]
',7456465,'2010-12-15',18000.00,1.5,25);
SQL DDL File
INSERT INTO EMPLOYEE VALUES
(6,'Thomas','Raj','
[email protected]
',9575673,'2010-08-25',85000.00,0.6,26);
INSERT INTO EMPLOYEE VALUES
(7,'Andy','Smith','
[email protected]
',8579452,'2012-08-28',28500.00,0.9,22);
INSERT INTO EMPLOYEE VALUES
(8,'Aaron','Samuels','
[email protected]
',5423424,'2014-06-24',12000.00,5.5,26);
INSERT INTO EMPLOYEE VALUES
(9,'Adam','Sam','
[email protected]
',325674,'2015-04-16',53000.00,1.2,26);
INSERT INTO EMPLOYEE VALUES
(10,'Nancy','A','
[email protected]
',3453424,'2016-10-25',53000.00,1.2,22);
INSERT INTO EMPLOYEE VALUES
(11,'Madavan','Manish','
[email protected]
',4353213,'2016-12-
30',25000.00,0.3,21);
INSERT INTO EMPLOYEE VALUES
(12,'Jennifer','Anderson','
[email protected]
',12342231,'2018-09-
27',45500.00,0.2,21);
INSERT INTO EMPLOYEE VALUES
(13,'Mamatha','T','
[email protected]
',53434334,'2019-07-25',46000.00,1.2,21);
INSERT INTO EMPLOYEE VALUES
(14,'Savitha','Singh','
[email protected]
',3443333,'2022-03-23',12000.00,0.15,23);
INSERT INTO EMPLOYEE VALUES
(15,'Susan','Kumar','
[email protected]
',322378445,'2023-04-30',19500.00,1.2,25);
SQL DDL File
You might also like
Sql Mastery set 1 (110 questions)
PDF
No ratings yet
Sql Mastery set 1 (110 questions)
7 pages
20 SQL Exercises For Practice: Table Structure and Schema
PDF
100% (5)
20 SQL Exercises For Practice: Table Structure and Schema
12 pages
Developing XML Report Using PLSQL Procedure in Oracle Apps
PDF
100% (2)
Developing XML Report Using PLSQL Procedure in Oracle Apps
2 pages
Fichas de Aprendizaje IBM AI - Quizlet
PDF
No ratings yet
Fichas de Aprendizaje IBM AI - Quizlet
26 pages
SAP Public
PDF
100% (2)
SAP Public
148 pages
PS Eee
PDF
No ratings yet
PS Eee
2 pages
sample_tables
PDF
No ratings yet
sample_tables
4 pages
Employee Department
PDF
No ratings yet
Employee Department
2 pages
LiveSQL 1
PDF
No ratings yet
LiveSQL 1
2 pages
Modelo de Estudio Caso Oracle
PDF
No ratings yet
Modelo de Estudio Caso Oracle
14 pages
Sanjana Dbms Work
PDF
No ratings yet
Sanjana Dbms Work
38 pages
Company Database DBMS LAB
PDF
No ratings yet
Company Database DBMS LAB
15 pages
Lab Objectives
PDF
No ratings yet
Lab Objectives
6 pages
Employee SQL
PDF
No ratings yet
Employee SQL
4 pages
23F-0540_HT_2
PDF
No ratings yet
23F-0540_HT_2
3 pages
SCHEMA1
PDF
No ratings yet
SCHEMA1
19 pages
Creat Obj Examples
PDF
No ratings yet
Creat Obj Examples
6 pages
Mysql Practice
PDF
No ratings yet
Mysql Practice
10 pages
Exercicios SQL
PDF
No ratings yet
Exercicios SQL
6 pages
Creating Company Database Schema and Populating With Data: and Reasoning Behind Constraints
PDF
No ratings yet
Creating Company Database Schema and Populating With Data: and Reasoning Behind Constraints
6 pages
Source Code Dbms
PDF
No ratings yet
Source Code Dbms
14 pages
Notes-Sql_Constraintstxt
PDF
No ratings yet
Notes-Sql_Constraintstxt
8 pages
DBMS Lab Manual Final City Midnapore
PDF
No ratings yet
DBMS Lab Manual Final City Midnapore
34 pages
21bce0400 Ass1
PDF
No ratings yet
21bce0400 Ass1
26 pages
DBMS & Gui Lab Manual
PDF
No ratings yet
DBMS & Gui Lab Manual
15 pages
Pms
PDF
No ratings yet
Pms
6 pages
Dbms_lab1
PDF
No ratings yet
Dbms_lab1
14 pages
Employee
PDF
No ratings yet
Employee
3 pages
INF313 - Class Exercise
PDF
No ratings yet
INF313 - Class Exercise
4 pages
tables for practice
PDF
No ratings yet
tables for practice
5 pages
Oot Lab1
PDF
No ratings yet
Oot Lab1
40 pages
Criacao BDJobs
PDF
No ratings yet
Criacao BDJobs
7 pages
SQL Company
PDF
No ratings yet
SQL Company
4 pages
DBMS Rough Data
PDF
No ratings yet
DBMS Rough Data
8 pages
DBMS Lab Mannual
PDF
No ratings yet
DBMS Lab Mannual
13 pages
Its Module Exam
PDF
No ratings yet
Its Module Exam
6 pages
Dbms 5th Program
PDF
No ratings yet
Dbms 5th Program
9 pages
Scripts Company
PDF
No ratings yet
Scripts Company
3 pages
Tabele Do Ćwiczeń
PDF
No ratings yet
Tabele Do Ćwiczeń
4 pages
DBMS Quiz
PDF
No ratings yet
DBMS Quiz
8 pages
LAB TASK 5 WORD
PDF
No ratings yet
LAB TASK 5 WORD
9 pages
RDBMS Lab Programs
PDF
No ratings yet
RDBMS Lab Programs
44 pages
Company DB Values
PDF
No ratings yet
Company DB Values
9 pages
assignment-1 dbms
PDF
No ratings yet
assignment-1 dbms
3 pages
Lab2 RDBMS
PDF
No ratings yet
Lab2 RDBMS
2 pages
Simple and Complex Queries
PDF
No ratings yet
Simple and Complex Queries
31 pages
Part a Print
PDF
No ratings yet
Part a Print
14 pages
DB Group Assig
PDF
No ratings yet
DB Group Assig
4 pages
Syntax Tugas Tabk
PDF
No ratings yet
Syntax Tugas Tabk
12 pages
3rd Company
PDF
No ratings yet
3rd Company
2 pages
Practicle File SQL Faculty: MR Surendra Namdeo
PDF
No ratings yet
Practicle File SQL Faculty: MR Surendra Namdeo
18 pages
Database codes
PDF
No ratings yet
Database codes
12 pages
Company Database
PDF
No ratings yet
Company Database
3 pages
Cluster Level
PDF
No ratings yet
Cluster Level
3 pages
SQL Word
PDF
No ratings yet
SQL Word
18 pages
Company DB Values
PDF
No ratings yet
Company DB Values
9 pages
Asir 1
PDF
No ratings yet
Asir 1
4 pages
DBMS 5Q
PDF
No ratings yet
DBMS 5Q
10 pages
Dbms Raw File
PDF
No ratings yet
Dbms Raw File
19 pages
KPR Institute of Engineering and Technology: COIMBATORE - 641 407
PDF
No ratings yet
KPR Institute of Engineering and Technology: COIMBATORE - 641 407
56 pages
Ex No: 1. Data Definition of Base Tables. Date: Aim
PDF
No ratings yet
Ex No: 1. Data Definition of Base Tables. Date: Aim
30 pages
CREATE TABLE departments and employees
PDF
No ratings yet
CREATE TABLE departments and employees
3 pages
100 Puzzles to Learn Data Warehousing
From Everand
100 Puzzles to Learn Data Warehousing
Cristian Scutaru
No ratings yet
No Ph.D. Game Design With Three.js
From Everand
No Ph.D. Game Design With Three.js
Nikiforos Kontopoulos
No ratings yet
java material
PDF
No ratings yet
java material
185 pages
First Last: Experience
PDF
No ratings yet
First Last: Experience
2 pages
Rice Disease Classifier 2
PDF
No ratings yet
Rice Disease Classifier 2
9 pages
Chapter 3
PDF
No ratings yet
Chapter 3
25 pages
NI Product Activation Report
PDF
No ratings yet
NI Product Activation Report
2 pages
Tutorial 2018 Optimization
PDF
No ratings yet
Tutorial 2018 Optimization
7 pages
Instagram Checklist
PDF
No ratings yet
Instagram Checklist
6 pages
Learn Javascript Tutorial
PDF
No ratings yet
Learn Javascript Tutorial
26 pages
Qos Indirecto
PDF
No ratings yet
Qos Indirecto
3 pages
Blast
PDF
No ratings yet
Blast
18 pages
UserManual SANWatch V2.2e
PDF
No ratings yet
UserManual SANWatch V2.2e
337 pages
Schmidhuber
PDF
No ratings yet
Schmidhuber
8 pages
Peer-Reviewed Scientific Journals
PDF
No ratings yet
Peer-Reviewed Scientific Journals
16 pages
Assignment 3 - Design Implementation-2024
PDF
No ratings yet
Assignment 3 - Design Implementation-2024
5 pages
Interfacing C and TMS320C6713 Assembly Language (Part-I) : Abdullah A. Wardak
PDF
No ratings yet
Interfacing C and TMS320C6713 Assembly Language (Part-I) : Abdullah A. Wardak
7 pages
search-quality-rater-resume
PDF
No ratings yet
search-quality-rater-resume
3 pages
PDMS Pipework Support
PDF
100% (1)
PDMS Pipework Support
74 pages
Diary of A Young Girl
PDF
50% (2)
Diary of A Young Girl
17 pages
SKF F4BC 25M-CPSS-DFHSquare Flanged Ball Bearing Unit With Set Screw Locking and Narrow Inner Ring, Composite Housing, SKF Food Line Specification
PDF
No ratings yet
SKF F4BC 25M-CPSS-DFHSquare Flanged Ball Bearing Unit With Set Screw Locking and Narrow Inner Ring, Composite Housing, SKF Food Line Specification
5 pages
Steve Jobs: - Founder of Apple Inc
PDF
100% (4)
Steve Jobs: - Founder of Apple Inc
22 pages
MVI56-MCM: User Manual
PDF
No ratings yet
MVI56-MCM: User Manual
159 pages
SAP Work Manager 6.4: Integrating Mobile, Cloud, Analytics, and More
PDF
No ratings yet
SAP Work Manager 6.4: Integrating Mobile, Cloud, Analytics, and More
8 pages
Chapter Three Fundamentals of The C/C++ Programming Language
PDF
No ratings yet
Chapter Three Fundamentals of The C/C++ Programming Language
23 pages
Business Intelligence &CloudComputing
PDF
No ratings yet
Business Intelligence &CloudComputing
15 pages
Python The Complete Reference
PDF
0% (1)
Python The Complete Reference
1 page
172 Protecting Specific Cells and Data Validation
PDF
No ratings yet
172 Protecting Specific Cells and Data Validation
6 pages
WinCC Flexible
PDF
No ratings yet
WinCC Flexible
466 pages
S7 Hvsysb
PDF
No ratings yet
S7 Hvsysb
418 pages
Student Management System Project Report 2
PDF
No ratings yet
Student Management System Project Report 2
47 pages
WEEK 9 ASSIGNMENT
PDF
No ratings yet
WEEK 9 ASSIGNMENT
17 pages