0% found this document useful (0 votes)
15 views17 pages

SQL Project Gautam

This document contains a practical project on information systems and management submitted to Guru Gobind Singh Indraprastha University, Delhi by Gautam Bisht. It includes an introduction to SQL, its importance and history. It then provides 22 examples of SQL queries to create and manipulate a table, insert and display data, select data based on various conditions, perform calculations on data, modify data, add and drop columns, and delete tables. The document serves as a guide to common SQL operations.

Uploaded by

Kanika Shahi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views17 pages

SQL Project Gautam

This document contains a practical project on information systems and management submitted to Guru Gobind Singh Indraprastha University, Delhi by Gautam Bisht. It includes an introduction to SQL, its importance and history. It then provides 22 examples of SQL queries to create and manipulate a table, insert and display data, select data based on various conditions, perform calculations on data, modify data, add and drop columns, and delete tables. The document serves as a guide to common SQL operations.

Uploaded by

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

PRACTICAL PROJECT

ON

INFORMATION SYSTEM AND MANAGEMENT

SUBMITTED IN THE PARTIAL FULLFILLMENT FOR

THE AWARD DEGREE OF

BACHELOR OF BUSINESS ADMINISTRATION (BBA)

TO

GURU GOBIND SINGH INDARPRASTHA UNIVERSITY , DELHI

SUBMITTED TO: SUBMITTED BY:

MR. ROBIN GAUTAM BISHT

ASSISTANT PROFESSOR BBA 5th SEM

00728101721

SESSION 2021-2024

KAMAL INSTITUTE OF HIGHER EDUCATION AND ADVANCE TECHNOLOGY

(AFFILIATED TO GURU GOBIND DINGH INDARPRASTHA UNIVERSITY)

K-1 EXTENSION ,MOHAN GARDEN NEW DELHI – 110059


TABLES OF CONTENT
S.NO Particulars
1. Meaning of SQL
2. Query to create table
3. Query to insert values in a table
4. Query to display values in a table
5. Query to select data from table where department is IT
6. Query to select data from table where gender is Female and department is IT
7. Query to select name from table where salary between 3000 to 5000
8. Query to select data from table where EID is 03
9. Query to select distinct department from table
10. Query to select Name4, Gender, EID where department is IT & gender is Female from table
11. Query to select Average Salary from table group by Gender
12. Query to select ENAME & EID from table where ENAME ends with I
13. Query to select data from table where ENAME starts with ‘M’
14. Query to select Minimum salary from table
15. Query to select Maximum salary from table
16. Query to count number of employees from table
17. Query to count number of employees group by gender from table
18. Query to increase salary of employees by 3000 from table
19. Query to select some salary & group by department from table
20. Query to delete records of employee whose EID is 2 from table
21. Query to add new column in table employee
22. Query to delete table employee
23. Query to show table structure
INFORMATION SYSTEM AND MANAGEMENT

Meaning of SQL
Structured query language (SQL) is a programming language for storing and processing
information in a relational database. A relational database stores information in tabular form,
with rows and columns representing different data attributes and the various relationships
between the data values.

Why is SQL important?


Structured query language (SQL) is a popular query language that is frequently used in all types
of applications. Data analysts and developers learn and use SQL because it integrates well with
different programming languages. For example, they can embed SQL queries with the Java
programming language to build high-performing data processing applications with major SQL
database systems such as Oracle or MS SQL Server. SQL is also fairly easy to learn as it uses
common English keywords in its statements.

History of SQL

SQL was invented in the 1970s based on the relational data model. It was initially known as the
structured English query language (SEQUEL). The term was later shortened to SQL. Oracle,
formerly known as Relational Software, became the first vendor to offer a commercial SQL
relational database management system.
1. QUERY TO CREATE TABLE

OUTPUT
2. QUERY TO INSERT VALUES IN A TABLE

OUTPUT
3. QUERY TO DISPLAY VALUES IN A TABLE

OUTPUT

4. QUERY TO SELECT DATA FROM TABLE WHERE


DEPARTMENT IS IT

OUTPUT
5. QUERY TO SELECT DATA FROM TABLE WHERE GENDER IS
FEMALE AND DEPARTMENT IS IT

OUTPUT

6. QUERY TO SELECT NAME FROM TABLE WHERE SALARY


BETWEEN 3000 TO 5000

OUTPUT
7. QUERY TO SELECT DATA FROM TABLE WHERE EID IS 03

OUTPUT

8. QUERY TO SELECT DISTINCT DEPARTMENT FROM TABLE

OUTPUT
9. QUERY TO SELECT NAME, GENDER, EID WHERE
DEPARTMENT IS IT AND GENDER IS FEMALE FROM TABLE

OUTPUT

10. QUERY TO SELECT AVERAGE SALARY FROM TABLE


GROUP BY GENDER

OUTPUT
11. QUERY TO SELECT ENAME AND EID FROM TABLE
WHERE ENAME ENDS WITH I

OUTPUT

12. QUERY TO SELECT DATA FROM TABLE WHERE


ENAME STARTS WITH ‘M’

OUTPUT
13. QUERY TO SELECT MINIMUM SALARY FROM TABLE

OUTPUT

14. QUERY TO SELECT MAXIMUM SALARY FROM TABLE

OUTPUT
15. QUERY TO COUNT NUMBER OF EMPLOYEES FROM
TABLE

OUTPUT

16. QUERY TO COUNT NUMBER OF EMPLOYEES GROUP


BY GENDER FROM TABLE

OUTPUT
17. QUERY TO INCREASE SALARY OF EMPLOYEES BY 3000
FROM TABLE

OUTPUT
When Salary increased by 3000

Initial Salary
18. QUERY TO SELECT SUM OF SALARY & GROUP BY
DEPARTMENT OF TABLE

OUTPUT

19. QUERY TO DELETE RECORDS OF EMPLOYEE WHOES


EID IS 2 FROM TABLE

OUTPUT
20. QUERY TO ADD NEW COLUMN IN TABLE EMPLOYEE

OUTPUT
21. QUERY TO DELETE TABLE EMPLOYEES

To delete records present in table

To delete table

To checks record in table

To check table in database


22. QUERY TO SHOW TABLE STRUCTURE

OUTPUT

You might also like