DBMS (Data Base Management)
DBMS (Data Base Management)
DBMS (Data Base Management)
Introduction
SQL (Structured Query Language) is a standard language for accessing and manipulating databases. SQL
commands are used to create, transform and retrieve information from Relational Database Management
Systems and also used to create interface between user and database. By using SQL commands, one can
search any data in the database and perform other functions like, create tables, add records, modify data,
remove rows, drop table etc. SQL commands are used to implement the following;
2
SQL can retrieve data from a database
2
SQL can insert records in a database
2
SQL can update records in a database
2
SQL can delete records from a database
2
SQL can create new databases
2
SQL can create new tables in a database
2
SQL can create views in a database
CREATE TABLE Command
CREATE TABLE command is used to create table structure. In this command, we need to give full
information about table such as number of columns, type of each column and constraints (primary key).
The CREATE TABLE command requires:
176
Computer Science
2
Name of the table,
2
Names of fields,
2
Definitions and constrains for each field.
Constrains
In SQL, we have the following constraints:
2
NOT NULL - To check a column cannot store NULL value.
2
PRIMARY KEY - To check that a column have an unique identity which helps to find a particular
record in a table.
Syntax:
CREATE TABLE<table name>
(<column name1> <data type>[size][constraints],
<column name2> <data type>[size][constraints],
.
.
.
<column name n> <data type>[size][constraints]);
Example:
Create the following table:
Table: Student
Command:
CREATE TABLE student
(Adno Numeric (3) Primary Key,
Name varchar (20) not null,
Class Numeric (2),
Section char (1),
Fees numeric (10, 2));
177
Computer Science
178
Computer Science
Example:
1. Display student table information.
SELECT *
FROM student;
This will display all information of the particular table (student) in the database.
2. To display name and class of student table information.
SELECT name, class
FROM student;
3. To display name of 10th class student information.
SELECT name
FROM student
WHERE class = 10;
Operators used in SQL commands:
Arithmetic operators:
Arithmetic operator takes two operands and performs a mathematical calculation on them. However, they
can be used only in SELECT command. The arithmetic operators used in SQL are:
+ Addition
- Subtraction
* Multiplication
/ Division
Example (string join)
1) Table: Name
179
Computer Science
FirstName + SecondName
Anu Jain
Madhu Bhattia
2) Table: Salary
Basic DA
25000 5000
35000 7000
SELECT Basic + DA
FROM Salary;
Output:
Basic + DA
30000
42000
NET PAY
30000
42000
Select DA-100
From salary;
Output:
DA-100
4900
6900
Select DA*100
From salary;
180
Computer Science
Output:
DA*100
500000
700000
Select DA/100
From salary;
Output:
DA/100
50
70
Relational operators:
Relational operators are used to implement comparison between two operands. These operators can be
used only in 'where clause'. Relational operators are -
< less than
> greater than
< = less than or equal to
> = greater than or equal to
= equal to
! = not equal to
Example:
Table: Student
181
Computer Science
Name
Anu Jain
Ajit Kumar
Rohan Sharma
2. Display students' name, who are paying above or equal to 3000 fees.
SELECT name
FROM student
WHERE fees>=3000;
Output:
Name
Mohit Sharma
Nandini
Logical operators:
Logical operators are also possible only in 'where clause' and are used to merge more than one condition.
Logical operators are:
182
Computer Science
AND
OR
NOT
Example:
1. Display information of students in class 11B.
SELECT *
FROM student
WHERE class = 11 AND section = 'B';
183
Computer Science
LIKE OPERATOR
LIKE OPERATOR is used to search a value similar to specific pattern in a column using wildcard operator.
There are two wildcard operators - percentage sign (%) and underscore ( _ ). The percentage sign
represents zero, one, or multiple characters, while the underscore represents a single number or character.
The symbols can be used in combinations.
For example:
1. Display the names that start with letter "A".
SELECT name
FROM student
WHERE name LIKE "A%";
Here, % replaces one or more characters.
Name
Anu Jain
Name
Mohit Sharma
Rohan Sharma
Name
Nandini
IN Operator
The IN operator allows us to specify multiple values in a WHERE clause
184
Computer Science
For example:
Display students' information, who are in section A and B.
SELECT *
FROM student
WHERE class IN ("A","B");
BETWEEN Operator
The BETWEEN operator is used to test whether or not a value (stated before the keyword BETWEEN) is
"between" the two values stated after the keyword BETWEEN.
For example:
Display students' information, who are paying fees between 2500 and 3500.
SELECT *
FROM student
WHERE fees BETWEEN 2500 AND 3500;
[Note: In the above Query 2500 and 3500 is also included]
ORDER BY
This command is used to arrange values in ascending or descending order.
For example:
185
Computer Science
SELECT *
FROM student
ORDER BY fees ASC;
'asc' for ascending order. Without asc also the list is displayed with ascending order only.
SELECT *
FROM student
ORDER BY fees DESC;
'desc' for descending order. If the 'desc' is not given, the list will be displayed with ascending order.
Aggregate functions
Aggregate functions are used to implement calculation based upon a particular column. These functions
always return a single value.
Aggregate functions are:
1. SUM()
2. AVG()
3. MAX()
186
Computer Science
4. MIN()
5. COUNT()
SUM()
This function is used to find the total value of a particular column.
Example:
SELECT SUM (fees)
FROM student;
SUM (fees)
17500
AVG()
This function is used to find the average value of a particular column.
Example:
SELECT AVG (fees)
FROM student;
AVG (fees)
2916.6666
MAX()
This function is used to find the maximum value of a particular column.
Example:
SELECT MAX (fees)
FROM student;
MAX (fees)
4500
MIN()
This function is used to find the minimum value of a particular column.
Example:
SELECT MIN (fees)
FROM student;
187
Computer Science
MIN(fees)
2000
COUNT()
This function is used to find the number of values (ie. number of rows) of a particular column.
Example:
SELECT COUNT (fees)
FROM student;
(or)
SELECT COUNT (*)
FROM student;
COUNT (fees)
6
(or)
COUNT (*)
6
GROUP BY
The SQL GROUP BY is a clause that enables SQL aggregate functions for grouping of information. (ie.
GROUP BY clause is used in collaboration with the SELECT statement to arrange identical data into
groups.). This clause is used whenever aggregate functions by group are required.
For example:
1. Display number of students in each class.
SELECT count (*), class
FROM student
GROUP BY class;
188
Computer Science
Having clause
As mentioned earlier, the 'where' clause is used only to place condition on the selected columns, whereas
the 'HAVING' clause is used to place condition on groups created by 'group by' clause, because here the
'WHERE' clause is not useable.
Example:
Display sum of fees which is more than 5000 for each class
SELECT class, sum (fees)
FROM student
GROUP BY class
HAVING sum (fees)>5000;
DISTINCT
The DISTINCT keyword is used to remove duplicate values in a particular column.
For example:
Display class in student table.
SELECT class
FROM student;
Class
12
11
189
Computer Science
12
10
12
11
Class
12
11
10
UPDATE Command
This command is used to implement modification of the data values.
Syntax:
UPDATE <table name>
SET <column name1>=new value, <column name>=new value etc
[WHERE <condition>];
Example:
1. Increase fees value by 500.
UPDATE student
SET fees = fees + 500;
190
Computer Science
DELETE Command
This command is used to remove information from a particular row or rows. Please remember that this
command will delete only row information but not the structure of the table.
Syntax:
DELETE
FROM <table name>
[WHERE <condition>];
For example:
1. Remove adno 444 information.
DELETE
FROM student
WHERE adno = 444;
191
Computer Science
192
Computer Science
Equi Join
Equi Joins are used to give information in different tables. It is a special type of join in which we use only
equality operator.
For example
SELECT *
FROM product, customer
WHERE product.product_no = customer. procuct_no;
(or)
SELECT *
FROM product p, customer c
WHERE p.product_no=c.procuct_no;
193
Computer Science
194
Computer Science
LET'S REVISE
2
CREATE TABLE: Used to create structure of the table.
2
ALTER TABLE: Used to implement structure modification.
2
DROP TABLE: To remove full structure.
2
INSERT INTO: To add row values.
2
SELECT: To display row or column information.
2
DISTINCT: To select different information.
2
MAX(): To select maximum value of a particular column.
2
MIN(): To select minimum value of a particular column.
2
SUM(): To find total value of a particular column.
2
AVG(): To find average value of a particular column.
2
COUNT(): Number of records in the table.
195
Computer Science
EXERCISE
1. Mr. Rohan has created a table 'student' with rollno., name, class and section. Now he is confused to set
the primary key. So identify the primary key column.
2. Ms. Ravina is using a table 'customer' with custno, name, address and phonenumber. She needs to
display name of the customers, whose name start with letter 'S'. She wrote the following command,
which did not give the result.
Select * from customer where name="S%";
Help Ms. Ravina to run the query by removing the errors and write the correct query.
3. Write SQL query to add a column totalprice with data type numeric and size 10, 2 in a table product.
4. The name column of a table 'student' is given below.
Name
Anu Sharma
Rohan Saini
Deepak Sing
Kannika Goal
Kunal Sharma
Based on the information, find the output of the following queries:
2
Select name from student where name like "%a";
2
Select name from student where name like "%h%";
5. A customer table is created with cno,cname, and address columns. Evaluate the following statement
whether it is correct or not?
Delete cname from customer;
6. Shopkeeper needs to change the first name of one of his customers in table 'customer'. Which command
should he use for the same?
7. Sonal needs to display name of teachers, who have "o" as the third character in their name. She wrote
the following query.
Select name
From teacher
Where name ="$$o?";
196
Computer Science
But the query is not producing the result. Identify the problems.
8. Pooja created a table 'bank' in SQL. Later on, she found that there should have been another column in
the table. Which command is used to add column to the table?
9. Surpreeth wants to add two more records of customer in customer table. Which command is used to
implement this?
10. Deepak wants to remove all rows from the tableBank. But he needs to maintain the structure of the
table. Which command is used to implement the same?
11. While creating table 'customer', Rahul forgot to add column 'price'. Which command is used to add
new column in the table. Write the command to implement the same.
12. Write the syntax of creating table command.
13. Write the syntax of dropping table command.
14. What all are the clause possible in select statement.
15. What is the default value of order by command.
16. Differentiate between delete and drop table command.
17. Differentiate between update and alter table command.
18. Differentiate between order by and group by command.
19. Define the following.
a) Union
b) Cartesian product
c) Equi Join
d) Non equi join.
20. What is the use of wildcard?
21. Create the following table items.
Column name Data type Size Constrain
Itemno Number 3 Primary key
Iname Varchar 15
Price Number 10,2
Quantity Number 3
197
Computer Science
198
Computer Science
199
Computer Science
200
Computer Science
201
Computer Science
202