DBMS File Index
DBMS File Index
Submitted By:
Submitted to:
Name: Anshul Mehta
Ms. Vinita Tomar
Enroll. no: 03514902023 Asst. Professor
Semester: 2m Dept. of Computer Applications
INDEX
ASSIGN TOPIC DATE SIGNATURE
MENT
NO.
1. Introduction to SQL, Characteristics of SQL & its
Advantages
2. SQL Command Types (DDL, DML, DCL & TCL).
3. SQL Datatypes.
4. Create Online Book Database with the following
tables: -
1. Book (ISBN varchar (10), Book_Title
varchar (30), Category varchar (30), Price
int, Copyright_Date date, Year_of_publishing
year, Page_count int)
2. Publisher (P_ID varchar (10),
Name_of_publication varchar (30), Address
varchar (50), Phone_no int, Email_ID varchar
(30))
3. Author (A_ID varchar (10), Name varchar (30),
Address varchar (50), Phone_no int, Email_ID varchar
(30)
4. 4) Review (R_ID varchar (10), ISBN varchar (10),
Rating int)
5. Insert five meaningful records in each above table.
6. Demonstrate the use of SELECT Command with the
use of
WHERE clause.
7. Demonstrate the use of ALTER TABLE Command.
8. Define TRUNCATE Command and DROP Command.
9. Demonstrate the use of Logical operators.
10. Demonstrate the use of Comparison operators.
11. Demonstrate the use of ORDER BY Keyword.
12. Demonstrate the use of UPDATE Command, and
DELETE
Command with WHERE Clause.
13. Demonstrate the use of the LIKE Operator. String
operations.
14. Demonstrate the use of Aggregate Functions.
15. Demonstrate the use of Date & Time and Version
Function etc.
16. Demonstrate the use of Numeric functions.
17. Demonstrate the use of String functions.
18. Demonstrate the use of Group by Clause and Having
Clause.
19. Demonstrate the use of selecting records using
NULL and NOT NULL values.
20. Add constraints to the columns in the already
created tables.
21. Demonstrate the use of Set Operators (Union,
Intersect, Minus).
22. Demonstrate the use of Join Operations (Inner Join).
Introduction
Advantages to SQL, Characteristics of SQL & its
INTRODUCTION TO SQL:
SQL helps you to easily get information from data with high efficiency.
To manipulate the data in databases like Create, Read, Edit, and
Delete, we use SQL queries. Users can interact with data stored in
relational database management systems. Anyone who knows the
English language can easily write SQL queries. Some of the key
features of SQL are given below:
1. Specific syntax and semantics of SQL data definition and data manipulation
languages.
2. It also provides with basic data structure and operations for designing,
assessing, maintaining, controlling and protecting SQL databases.
5. Professionals can become proficient in its use and increase the productivity.
6. It provides with longevity.