0% found this document useful (0 votes)
21 views6 pages

SQL Short Note

The document discusses various concepts related to databases and SQL. It defines terms like database, table, records, attributes, data types and explains SQL commands for creating tables, inserting records, altering tables and dropping tables.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
21 views6 pages

SQL Short Note

The document discusses various concepts related to databases and SQL. It defines terms like database, table, records, attributes, data types and explains SQL commands for creating tables, inserting records, altering tables and dropping tables.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 6

WEB BROWSER = Web browser is software program to navigate the web pages on the internet.

Examples - Google Chrome , Mozilla Firefox, Internet Explorer etc.


WEB HOSTING WEB SERVER
Web hosting is the process of uploading/saving the A web server is a computer or a group of computers
web content on a web server to make it available on that hosts or stores content of website.
WWW (World Wide Web). Examples Apache Tomcat , IIS
Web 2.0 =Web 2.0 refers to new generation of dynamic and interactive websites.
HTML (Hyper Text Markup Language) XML(eXtensible Markup Language)
HTML is used to display the data, text and XML is used to describe the data and focus is on
images of a webpage on web browser and focus the content of the data. XML is recommended by
is on the format of data displayed. the World Wide Web Consortium (W3C). It is a
free open standard.
HTML tags are predefined XML tags are not predefined. We can create our
own tags. XML code can also contain HTML tags.
HTML tags are not case sensitive. Example - XML tags are case-sensitive
<HTML> or <html> are the same

URL (Uniform Resource Locator) DOMAIN NAME


URL is unique identifier of a web page Domain name is your website name
The most general form of a URL syntax is as follows:
Protocol:// <domain name> / <directory path>/<object name>
For example - https://www.example-site.com/sql/sql_intro.asp
( Domain Name System / Domain Name Resolution - when the user types a domain name, the
domain names are translated into Internet Protocol (IP) addresses. The computers or machines, access
websites based on IP addresses )

UNIT III DATABASE MANGEMENT (20 Marks )


A DBMS or database management system is Database = Collection of inter-related tables and
a software used to create and manage other objects.
databases.
{manage = insert new records, display, DBMS = DB + MS ,
modify, delete , provide access control etc. } DataBase + software to handle the DB
RDBMS = RDBMS = database is Examples of popular RDBMS
Relational Database organised in the form of MySQL, Oracle, Sybase, DB2
Management System relations (i.e. tables)
TERMINOLGY ( RDBMS) [1 mark / 2marks ]
Table : CUSTOMER
Cust_Id CNAME AADHAR_NO ADDRESS PHONE
C01 ANUJ KUMAR 345612348912 GAUTAM VIHAR 8765432190
CO3 NEHA SINGH 367823458904 RANI BAGH 7722334673
CO4 NAREN GARG 453627980423 MAHESH NAGAR 6345612566
CO7 BHARAT VERMA 516782245679 MALVIYA NAGAR 9818624567
Primary Key - An attribute or Candidate Key- An attribute Alternate Key - The candidate
set of attributes that uniquely or set of attributes that can key which is not chosen as
identify a record in a become primary key of the primary key
table/relation table/relation
e.g. - in table customer(cust_id, e.g. - customer(cust_id, cname, e.g. in table customer(cust_id,
cname, aadhar_no, address, aadhar_no, address, phone) , cname, aadhar_no, address,
phone) , the attribute cust_id is the attribute cust_id and phone) , the attribute cust_id is
primary key aadhar_no are candidate keys chosen as primary key,
then aadhar_no will be
alternate key

18 | K V S Regional Office, JAIPUR | Session 2020-21


Foreign Key - A non-key e.g Customer.cust_id =
attribute of a table whose Table Customer(cust_id, primary key
values are derived from cname , address, phone) Orders.cust_id =
primary key of some other table foreign key
is known as foreign key in Table Orders (Order_id,
current table. order_dt , cust_id , amount)

Database = Collection of inter-related tables and other objects.


Relation /Table = collection of inter-related records
Tuple /Row/ Record = collection of attributes
Attribute/Column / Field = descriptive property of an entity
Data item = value

SQL = Structured Query SQL = Open industry standard MySQL = Open Source RDBMS
Language language used to query (Michael Widenius aka Monty =
(pronounced as = SEEQUEL) ( create and manage) Chief Inventor)
databases
DATATYPES COMMONLY USED IN SQL
For Text Numeric Data Date Boolean values
CHAR ( n ) VARCHAR ( n ) INT ( n ) or DECIMAL( n, Date tinyint(1)
INTEGER ( n ) d) ( value = 0
or format means False , 1
FLOAT (n) -dd-m means True)
decimal(n,d) = n is total number of digits and d is no of digits after decimal
example - decimal(7,2) => total 7 digits of number ( 5+ 2 decimal part)

Advantages of SQL [1 mark / 2 marks ]


Faster Query Processing ; User-friendly language , no coding skills necessary ; Standardised
Language with uniform platform ; Interactive ; Portable
Categories of SQL Commands [1 mark / 2 marks ]
DDL = Data Definition DML = Data Manipulation DCL = Data Control TCL = Transaction
Language Language Language Control Language
Used to create/modify Used to change table data
table structure
( CREATE , ALTER , ( INSERT, UPDATE, (GRANT, REVOKE) ( COMMIT, ROLLBACK,
DROP etc) SELECT, DELETE etc) SAVEPOINT)

SQL Commands at a glance [1 mark / 2 marks ]


1 - CREATE DATABASE = to create tables and create database <database-name> ;
work with them
2 VIEW LIST OF EXISTING DATABASES ON show databases ;
YOUR MACHINE =
3 OPEN A DATABASE FOR WORK = use <database-name> ;
4 VIEW LIST OF EXISTING TABLES AND / show tables ;
OR VIEWS =
5 VIEW THE STRUCTURE OF AN EXISTING desc <table-name> ; OR
TABLE = describe <table-name> ;
6 - CREATE TABLE ( DDL command )=
CREATE TABLE <table-name> CREATE TABLE PUPIL
( <col1-name> datatype [(size)] [constraint] , ( admno integer(4) primary key ,
<col2-name> datatype[(size)] [constraint] , name varchar(18) not null,
19 | K V S Regional Office, JAIPUR | Session 2020-21
- - - - - ); dob date , gender char(6) DEFAULT 'MALE',
fees decimal ( 7, 2) , avgmark decimal(5,2) ) ;
7 - INSERT Records ( DML Command )= Two ways of using insert command ( A and B) :
A = INSERT INTO <table-name> VALUES B = INSERT INTO <table-name> (<col1-name> ,
(<value-1> , <value-2> , - - - ) ; <col2-name> , - - -)
- - order of data-values same as table structure VALUES (<col1-value> , <col2-value> , - - - ) ;
i.e. columns order - - useful when inserting partial record or
change the order of insertion
- - 'string' or "string" , date as 'yyyy-mm-dd' - - non-numeric data in 'quotes'
as per A= as per B =
insert into pupil values(114, 'ANITA MATHUR', insert into pupil(name, admno, dob)
'2002-06-20' , 'FEMALE', 3150.0 , 91.2) ; values('DEV SHARMA', 112, '2003-01-03') ;
8 - ALTER TABLE ( DDL command)-
- to add a column
ALTER TABLE <table-name> ADD <col-name> <datatype>[(<size>)] [constraint] ;
e.g. - ALTER TABLE pupil ADD grade char(2);
- to add integrity constraint
ALTER TABLE <table-name> ADD <constraint> (<col-name>);
- to redefine a column (datatype , size, default-value)
ALTER TABLE <TABLE-NAME>
MODIFY (<COL-NAME> NEWdatatype [(<size>)] ) [ FIRST | AFTER colname] ;
Example - ALTER TABLE PUPIL Modify name varchar(20);
ALTER TABLE <TABLE-NAME>
MODIFY <old_col_name> <new_col_name > < new_col_definition> ;
9- DROP COMMAND To delete a table as well as its structure from
(DDL command) database.
DROP TABLE <table-name> ; DROP TABLE FLIGHT ;
OR
DROP TABLE [IF EXISTS] <table-name> ;
DROP is also used as a CLAUSE in ALTER ALTER TABLE book DROP disc_amt ;
TABLE command ALTER TABLE flight DROP PRIMARY KEY ;
TABLE : PUPIL
Admno Name DOB Gender Fees Avgmark Grade
104 RAVINDER 2004-02-24 MALE 3150.0 85.6 B
107 PARTH GUPTA 2003-07-15 MALE 2850.0 90.3 A
112 DEV SHARMA 2003-09-03 MALE 300.0 NULL C
114 ANITA MATHUR 2003-06-20 FEMALE 3150.0 92.7 NULL
122 NAVNEET 2004-03-10 MALE 2850.0 87.5 B
126 GEETU VERMA 2003-11-16 FEMALE 2700.0 91.4 A
128 PREETI 2004-01-13 FEMALE 3000.0 93.6 A
10- UPDATE Query (DML Command) - To modify existing record(s)
UPDATE <table-name> update pupil
SET <col-name> = <value> [ , <col2-name> = set avgmark = 89.7 , grade = 'B'
<value> , - - - ] where admno = 107 or admno = 112 ;
[WHERE <condition>] ;
11- DELETE Query (DML Command )- To remove a record(S)
DELETE FROM <table-name> [ WHERE <condition> ] ;
Example - delete from pupil where admno = 126 ;
12- SELECT Query (DML Command) - to view data (content) of a table / view

20 | K V S Regional Office, JAIPUR | Session 2020-21


General syntax - ( In the commands the keywords are written in
SELECT <col-list> CAPITALS so that they are easy to identify.
FROM <table-name> [ ,<table2-name> , - - - ] Otherwise SQL commands are NOT CASE
SENSITIVE. One can type in small-case or upper-
[WHERE <condition> ]
case )
[ ORDER BY ASC | DESC ]
[ GROUP BY <col-name> [ HAVING <condition-
based-on-group-col> ] ] ;
Examples - There are many ways of using SELECT
Command
select admno , dob , name from pupil ; select name , 'was born on' , dob from pupil ;
select * from pupil ; select name , dob AS "Date of Birth" from pupil ;
Column ALIAS NAME keyword AS used. select admno, name, dob AS BIRTHDATE from
<col_name> AS <alias-name> pupil ;
(in above examples, column alias BIRTHDATE ,
one word long
clause)
Following are the clauses/operators which can be used with SELECT command:
DISTINCT - Used to display distinct values select DISTINCT name from pupil;
from a column of a table. To view data of names (without repetition) of
the students
WHERE - Used to specify the condition based OPERATORS USED IN WHERE CLAUSE -
on which rows of a table are displayed > , < , < = , = , != , AND (&&) , OR (||), NOT
To view name, dob, grade of students with select name, dob, grade from pupil
grade.
To view data of admission number 126 SELECT * FROM pupil WHERE admno = 126 ;
To view name, admission number and select name , admno , dob
date_of_birth of those students who have fees from pupil
more than 3000 where fees > 3000 ;
BETWEEN - Used to define the range of values Range includes both the upper and the lower
within which the column values must fall to values.
make a condition true. select * from pupil where fees BETWEEN 3000
AND 3500 ;
Same command using AND , relational select * from pupil
operators where fees >= 3000 AND fees <= 3500 ;
IN - Used to select values that match any value select admno, name from pupil
in a list of Specified values
Same command using OR operator select admno, name from pupil

LIKE - Used for pattern matching of string data % = zero, one or many characters
using wildcard characters % and _ _ = single character (underscore symbol)
To view data from pupil for names begin with

To view details of those students whose fees is select * from pupil


where fees > 3000 AND name LIKE ;
(I have typed space in between underscore
character to show clarity, it is typed in
continuity in the actual command)

21 | K V S Regional Office, JAIPUR | Session 2020-21


select empno , ename, salary+comm AS
ORDER BY name ;

IS NULL / IS NOT NULL - Used to select rows in which the specified


column is NULL (or IS NOT NULL)
To view the details of those students whose select * from pupil where dob IS NULL ;
dob is not entered / dob datavalue is not
available.
ORDER BY - Used to display the selected rows by default the ORDER is ASC i.e. ascending order.
in ascending or in descending order of the For descending order, must specify DESC
specified column/expression
select * from pupil ORDER BY name ; select admno, dob, name, grade from pupil
OR ORDER BY name DESC ;
select * from pupil ORDER BY name ASC ; select * from pupil
ORDER BY grade , name DESC ;
(NOTICE two columns in order by, here Col1
ASC, Col2-DESC)
GROUP BY To apply a SQL SELECT query on A group column is generally that column of the
a group of records instead of whole table. table which has repeating values.
GROUP BY <column-name> is used
For example, columns fees, gender , grade in select gender, count(*) from pupil
table pupil have repeating values you can GROUP BY gender ;
group the values of these columns. select max(fees) from pupil GROUP By grade ;
Avoid non-group function or non-group Group functions ignore NULL values.
column in SELECT clause.
Look at ORDER BY AND GROUP BY again
Order by Group by

HAVING - To add condition to GROUP BY select grade, avg(marks) from pupil


column. ( i.e. Use only with Group By ) group by grade HAVING count(*) > 1 ;
AGGREGATE FUNCTIONS (Also known as Group/ Multi-Row Functions) [ 1 / 2 marks output)
SUM() Returns the sum of the column
MIN() Returns the minimum value in the given column or set of values
MAX() Returns the maximum in the given column or set of values
AVG() Returns the average value of data in the given column or set of values
COUNT() Returns the total number of values / records as per the given column

WORKING WITH MORE THAN ONE TABLE - [1 / 2 mark query ]


CARTESIAN PRODUCT OR CROSS JOIN Cross Join of two tables is obtained by pairing
up each row of one table with each row of the
other table.
22 | K V S Regional Office, JAIPUR | Session 2020-21
Table A ( 3 rows, 4 columns)
Table B ( 2 rows, 3 columns)
A X B = 6 rows, 7 columns ( 3 x2 , 4 + 3 )
(degree = total columns , cardinality = total
rows in a table)

TIPS - memorise Degree / Cardinality C not C { Column is not Cardinality}


Column ( 6 Letters) = Degree ( 6 letters)
Cardinality ( longer word) = Rows ( horizontally long )
Table : BOOKS Table : ISSUED
Book_Id Book_Name Publishers Type Book_Id Price Qty_Issued
C01 Fast Cook EPB Cookery T01 400 4
F01 The Tears First Fiction C01 350 5
T01 My C++ TDH Text F01 280 2
T02 C++ Brain TDH Text C01 300 6
F02 Thuderbolts First Fiction
EQUI_JOIN joining based on common column select * from books ,issued
(use it in WHERE clause, where books.book_id =
<table1>.<common-column> = table2.<common-column> ) issued.book_id ;
NATURAL_JOIN like equi-join, difference is that the select * from books NATURAL JOIN
common column of tables appears only once in the result issued;
Example , To display the Book Name, Quantity_Issued and Price for all books of TDH publishers-
select book_name , qty_issued , price from books B , issued S
where B.book_id = S.book_id
( Here B , S are table ALIAS NAMES)

INTERFACE OF PYTHON WITH AN SQL DATABASE: -2 MARKS (5 MARKS PRACTICAL EXAM)

INTERFACE OF PYTHON WITH AN SQL DATABASE


When we want to design real life applications to manipulate
Data stored in database we need interface python with MySQL. The steps are

(i) We use pip install MySQL.Connector :This command we use to install library of MySQL with python.
(ii)import MySQL.connector: This statement run on python to access the module of MySQL if
Any error means this module working properly.

To make the connection with MySQL database using connect() function where user, password and
database as per our system which we assign during installing of MySQL. Mydb is connection object.
(iv)cursor=mydb.cursor()-a database cursor is useful control structure for row by row processing of
records
(v) l execute the sql query and store the retrieved records.
(vi) data=cursor.fetchall():Extract data from result set using fetch() functions.
fetchall() :It will return all the records retrieved in tuple form.
fetchone() :It will return one record from the result set.
fetchmany(n) :It will return number of records as per value of n and by-default only one record.
(vii) count=coursor.rowcount
It is the property of cursor object that return number of rows retrieved.

23 | K V S Regional Office, JAIPUR | Session 2020-21

You might also like