Database Interface Study Material
Database Interface Study Material
c. Switch
95
d. Repeater may be placed when the distance between 2 buildings is more than 70 meter.
e. WAN, as the given distance is more than the range of LAN and MAN.
1. Advantage: Since there is a single common data path connecting all the nodes, thebus topology
uses a very short cable length which considerably reduces the installation cost.
Disadvantage: Fault detection and isolation is difficult. This is because control of the network is
not centralized in any particular node. If a node is faulty on the bus, detection of fault may have to
be performed at many points on the network. The faulty node has then to be rectified at that
connection point.
2. (i). failure in one cable will not affect the entire network
(ii). If the central hub or switch goes down, then all the connected nodes will not be able to
communicate with each other.
3. PAN
4. i. Star Topology should be used.
5. VoIP
6. HTTP is a protocol that is used for transferring hypertext(i.e. text, graphic, image,
sound, video, etc,) between 2 computers and is particularly used on the World Wide
Web (WWW)
7.
(i) Network Interface Card (NIC) is a network adapter used to set up a wired
network. Itacts as an interface between computer and the network.
(ii) A repeater is a device that amplifies a signal being transmitted on the network.
96
TEST YOURSELF: PART II
1. LAN
2. [Link] Topology
[Link] Topology
3. It is an IP Address. It is used to identify the computers on a network
4. MAN
5. (i)
(ii) The most suitable place/ building to house the server of this organization would be building
Research Lab, as this building contains the maximum number of computers
(iii). a)Repeater : distance between Store to Research Lab is quite large, so a repeater would
ideally be placed.
b)Hub/Switch : Each would be needed in all the buildings to interconnect the group of
cables from the different computers in each building.
6. IP address [Link]
URL : [Link]
97
DATABASE
A database is an organised collection of interrelated data that serves many applications.
Its is generally a computer record keeping system. In a database we can not only store the data but we
can also change the data as per the user requirement.
These databases are generally managed by special software called DBMS (Database Management
System)
Database System:
A database along with the DBMS is referred to as database system
Oracle, MySQL Server, MySQL, Sybase, SQLite, PostgreSQL, FoxPro, SAP , dBase
98
Eg.
Table: Student (Relation)
Attributes
102 Mohit 37
103 Aryan 23
104 Ruhi 56
KEYS:
In a relation each record should be unique i.e. no two records can be identical in a database. A key
attribute identifies the record and must have unique values
100
SQL COMMANDS
DATA DEFINITION LANGUAGE
102
Multiple Choice Questions
1 Fill in the blank:
_____ is a non-key attribute, whose values are derived from the primary key of some other
table.
(A) Primary Key (B) Candidate Key (C) Foreign Key (D) Alternate Key
2 An Attribute in a relations a foreign key if it is the _____ key in any other relation.
(A) Candidate Key (B) Foreign Key (C) Primary Key (D) Unique Key
3 An attribute in a relation is a foreign key if it is the ________ key in any other relation.
(A) Candidate Key (B)Foreign Key (C) Primary Key (D)Unique Key
4 _________ is an attribute, whose values are Unique and not null.
(A) Primary Key (B)Foreign Key (C)Candidate Key (D)Alternate Key
5 Select the correct statement, with reference to RDBMS:
a) NULL can be a value in a Primary Key column
b) ' ' (Empty string) can be a value in a Primary Key column
c) A table with a Primary Key column cannot have an alternate key.
d) A table with a Primary Key column must have an alternate key.
6. Layna creates a table STOCK to maintain computer stock in vidyalaya. After creation of the table, she
has entered data of 8 items in the table.
103
STRUCTURED QUERY LANGUAGE (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.
By using SQL commands, one can search for any data in the database and perform other functions like
creating tables, adding records, modifying data, removing rows, dropping tables etc.
Relational Data Model
In this model data is organized into tables. These tables are called relations. Rows of table are known as
tuples and columns are known as attribute.
Domain:
It is a pool of values from which the actual values appearing. For example if there 40 students having
rollno 1 to 40 and we assigning work to these students then domain for rollno is 1 to 40
Tuple: Tuples are row of a table.
Attribute: Attributes are column of relation.
Degree: Total number of attributes (Column) in a table are known as Degree.
Cardinality:
Total number of tuples (Row) in a table are known as Cardinality. Heading row is not included while
calculating cardinality of a table
Candidate Key:
A Candidate Key is the one that is capable of becoming Primary key i.e., a column that has unique value
for each row in the relation and that can not be NULL.
For example if there is a table student having columns (Rollno , AdmNo, Name , fees ,city and DOB) . In
this table Rollno and AdmNo both columns have all the properties to become primary key of table. That
is why Rollno and AdmNo are known as Candidate key.
Primary Key:
It is set of one or more columns that can uniquely identify tuples with in the relation. It cannot be null.
For example in student table RollNo is selected as Primary key.
Alternate Key:
A candidate key that is not primary key is called alternate key. Example is AdmNo because it is candidate
key but not selected as primary key.
Foreign Key:
A non-key attribute of a table , which is primary key in another table. The values of foreign key are
derived from the primary key of base table. For example we are having a table Library having columns
BookNo, BName, RollNo)
Here Bookno is Primary key
RollNo is Foreign key in Library table as it is primary key in student table.
104
SQL Commands
SQL commands are instructions. It is used to communicate with the database. It is also used to perform
specific tasks, functions, and queries of data.
SQL can perform various tasks like create a table, add data to tables, drop the table, modify the table, set
permission for users.
Types of SQL Commands. There are four types of SQL commands: DDL, DML, DCL, TCL
DDL or Data Definition Language actually consists of the SQL commands that can be used to define the
database schema. It simply deals with descriptions of the database schema and is used to create and
modify the structure of database objects in the database. DDL is a set of SQL commands used to create,
modify, and delete database structures but not data.
List of DDL commands:
CREATE: This command is used to create the database or its objects (like table, index, function, views,
store procedure, and triggers).
The SQL commands that deals with the manipulation of data present in the database belong to DML or
Data Manipulation Language and this includes most of the SQL statements. It is the component of the SQL
statement that controls access to data and to the database. Basically, DCL statements are grouped with
DML statements.
List of DML commands:
105
DATA TYPES
Data types are means to identify the type of data and associated operations for handling it.
MySQL data types are divided into following categories:
CHAR(size) A FIXED length string its size can be from 0 to 255. Default is 1
VARCHAR(size) A VARIABLE length string, its size can be can be from 0 to 65535
FLOAT(size, d) / A floating point number. The total number of digits is specified in size. The
Decimal number of digits after the decimal point is specified in the d parameter.
Example float(10,2) . Example 3455738.50
DATABASE COMMANDS
1. VIEW EXISTING DATABASE
To view existing database names, the command is:
SHOW DATABASES;
2. CREATING DATABASE IN MYSQL
For creating the database in MySQL, we write the following command:
CREATE DATABASE <databasename>; [Link] order to create a database Student, command is:
CREATE DATABASE Student;
3. ACCESSING A DATABASE
For accessing already existing database,we write:
USE<databasename>;
[Link] access a database named Student, we write command as:
USE Student;
4. DELETING DATABASE
106
For deleting any existing database,the command is:
DROP DATABASE <databasename>;
[Link] delete a database, say student, we write command as:
DROP DATABASE Student;
5. VIEWING TABLE IN DATABASE
In order to view tables present in currently accessed database, command is:
SHOW TABLES;
DDL COMMANDS :-
CREATING TABLES IN MYSQL
Syntax of CREATE TABLE command is:
CREATE TABLE <table-
E.g. In order to create table EMPLOYEE given below:
ECODE ENAME GENDER GRADE GROSS
Create table employee (ecode integer, ename varchar(20),gender char(1),grade char(2),gross integer);
ALTER TABLE
ALTER TABLE command is used to change the structure of the existing table. It can be used to add or drop
new columns or modify the existing columns of table.
Eg. 1. Alter table Employee Add email char(20);
2. ALTER TABLE Employee MODIFY (ename varchar(60));
2. Alter table employee drop email;
DROP TABLE:
DROP TABLE command allows to remove a table from database. Once the DROP command is issued, the
table will no longer be available in the database.
Eg. DROP TABLE employee;
DESC TABLE:
DESC TABLE command display the structure of table on screen.
Eg. DESC employee;
DML Commands
107
INSERTING DATA INTO TABLE:
Syntax:
Or
Insert into <tablename>(<column list> )values(<values list>);
Or
The above query changes the gross and grade values for the record with ecode 1001.
SELECT COMMAND:
It helps to display the records as per our requirement.
Different forms of select command:
1. Select * from employee;
It displays all rows and columns from the table.
2. SELECT ECODE, ENAME FROM EMPLOYEE;
It displays selected columns from the table.
108
4. ELIMINATING REDUNDANT DATA
The distinct keyword is used to eliminate duplicate records from the table. Eg. Select distinct (gender)
from employee;
DISTINCT(GENDER)
Note: For displaying records that do not match in the list, we have to use not in operator.
CONDITION BASED ON PATTERN MATCHES
LIKE operator is used for pattern matching in SQL. Patterns are described using two special wildcard
characters: % and _ (underscore)
1. Percent ( % ) The % character matches any substring.
2. Underscore ( _ ) The _ character matches any single character.
[Link] display names of employee whose name starts with R in EMPLOYEE table, the command is:
The NULL value in a column can be searched for in a table using IS NULL in the WHERE clause. E.g. to list
employee details whose salary contain NULL, we use the command:
Select * from employee where gross is null;
Relational Operators
To compare two values, a relational operator is used. The result of the comparison is true or false.
Relational Operators recognized by SQL: =, >, <, <=, >=, <> (not equal or !=)
Eg. Select * from employee where ecode <> 1001;
Above query will not display those employee details whose ecode column value is 1001.
Logical Operators- (OR, AND, NOT)
1. To list the employee details having grades E2 or E3.
2. To list
3.
Select ecode,
Sorting Results- ORDER BY clause
Results of SQL query can be sorted in a specific order using ORDER BY clause.
The ORDER BY clause allows sorting of query results by one or more columns. The sorting can be done
either in ascending or descending order.
Eg. Select * from emp order by ename;
Above query arranges the records in alphabetical order of ename value. By default order by clause
arranges in ascending order.
Select * from employee order by ename desc;
Above query gives output in descending order of ename.
110
FUNCTIONS: In MYSQL function is a special type of predefined command set that perform some
operation and return a single value. The value that are provided to functions are called parameters or
arguments.
Functions can be divided into two categories.
1. Single row function :- This type of function can apply on each row of [Link] are
(a ) Lower/Lcase: This function convert a string into lower case. Example :
Select Lower(name) from student;
2. Group Row Function : These function can work on group of rows and give you a single result.
(1) AVG ( ) This function computes the average of given data.
111
A constraint is a condition or check applicable on a field or set of fields. Common types of constraints
include:
[Link] Description
Example:
112
If A table has 3 Rows and 4 columns and B table has 6 rows and 7 columns then write No of rows and
columns in C table which is Cartesian product of Table A and B
Answer is Rows = 3 X6= 18
Columns = 4+7=11
Equi-Join
A join which is obtained by putting a condition of equality on cross join is called an 'equi join'.
We can extract meaningful information from the Cartesian product by placing some conditions in the
statement.
The join in which columns are compared for equality is called equi-join.
In this type of join we put * in the select list therefore the common column will appear twice in the
output.
Example: Consider the 2 tables emp and dept.
113
The join in which only one of the identical columns exists is called natural join.
It is similar to equi-join except that duplicate columns are eliminated in natural join that would
otherwise appear in equi-join.
Example:
(a) (b)
(c) (d)
Q.7. which keyword is used to retain duplicate value in select command
(a) distict (b) show (c) all (d) like
Q.8 Conditionally retrieval of rows from a table with SELECT, which clause is used?
(a) Where (b) Having (c) Group By (d) Order by
114
Q.9. The key word eliminates duplicate rows from the result of a SELECT statement.
(a) All (b) Unique (c) Distinct (d) IN
Q10. Which operator defines a range of values that the column values must fall in?
(a) In (b) Like (c) Between (d) Is
Q11.
(a) In (b) Like (c) Between (d) Is
Q12. We use operator with select for condition based on pattern matching.
(a) In (b) Like (c) Between (d) Is
(a)Show database; (b) Show databases; (c) Show database(); (d) Show_all database;
(a) LIST (b)TUPLE (c) ROWS AND COLUMNS (d) LIST AND TUPLES BOTH
ANSWERS
[Link]. Answers [Link]. Answers
1 c 8 a
2 d 9 c
3 d 10 c
4 b 11 a
5 d 12 b
6 d 13 b
14 d
7 c
15 c
116
SHORT ANSWER QUESTIONS
(2 Marks Each)
Q1. Differentiate between Candidate Key and Primary Key in the context of Relational Database Model.
Ans. A table may have more than one or a combination of attribute(s)that identifies a tuple uniquely. All
such attribute(s) are known as Candidate Keys.
Out of all the Candidate keys, the most appropriate one, which is used for unique identification of the
Tuples, is called the Primary Key.
Q2. Sreenath created the following table STUDENT in his database.
Table : STUDENT
1 Ritika 12 40
2 Angad 12 35
3 Kaveri 11 42
4 Lalitha 12 21
5 Daniel 11 44
6 Rabindra 11 39
7 Rabia 11 28
He wants to now count number of students in each CLASS where the number of students is more than 3.
He has executed the following query.
SELECT MAX(MARKS) FROM STUDENT WHERE COUNT(*)>3 GROUP BY CLASS;
But, he got an error. Identify the error and rewrite the query.
Ans. To filter more condition with group by clause HAVING clause is used in place of WHERE clause.
Correct query is
SELECT MAX(MARKS) FROM STUDENT GROUP BY CLASS HAVING COUNT(*)>3;
Q.3. Difference between Where and Having Clause
Answer : WHERE Vs HAVING: WHERE is used to put a condition on individual row of a table whereas
HAVING is used to put condition on individual group formed by GROUP BY clause in a SELECTstatement.
Q.4. Difference between alter command and update command
Ans: 1. Alter is a DDL command while update is a DML command
2 Alter command is used to change the structure of table while update is used to change in records
Q.5. Difference between drop command and drop clause of Alter table .
Ans:- Drop command is used to delete the entire table along with its structure while drop clause is used
with alter table command to drop a column or constraints
Q.6. Difference between Unique and Primary Key
Ans. Primary Key: In a table there can be one primary key with one column or one combination of
column. It cannot be Null.
117
Unique: In a table there can be Unique constraints can be applied to any number of columns . It
can have Null values.
Q9. Mr. Roger is using a table LIBRARY. It has the following columns:
BCode, BName, Price, author.
He wants to display maximum price Author wise. He wrote the following command:
SELECT Author, Max(Price) FROM LIBRARY;
But he did not get desired result. Rewrite the above query with necessary change to help him get the
desired output and explain the reason.
Group By clause is used to group the rows together that contain the same values in a specified
[Link] to display maximum price of each author , the table must be grouped author wise using
group by clause.
118
LONG ANSWER QUESTIONS (6 MARKS)
Q.1. Write SQL queries for (i) to (iv) and find outputs for SQL queries (v) to(viii), which are basedon the
tables.
TRAINER
COURSE
CID CNAME FEES STARTDATE TID
C201 AGDCA 12000 2018-07-02 101
C202 ADCA 15000 2018-07-15 103
C203 DCA 10000 2018-10-01 102
C204 DDTP 9000 2018-09-15 104
C205 DHN 20000 2018-08-01 101
C206 O LEVEL 18000 2018-07-25 105
(i) Display the Trainer Name, City & Salary in descending order of their Hiredate.
(ii) To display the TNAME and CITY of Trainer who joined the Institute in the
month of December 2001.
(iii) To display TNAME, HIREDATE, CNAME, STARTDATE from tables TRAINER and COURSE
of all those courses whose FEES is less than or equal to 10000.
(iv) To display number of Trainers from each city.
(v) SELECT TID, TNAME, FROM TRAINER WHERE CITY NOT
(vi) SELECT DISTINCT TID FROM COURSE;
(vii) SELECT TID, COUNT(*), MIN(FEES) FROM COURSE GROUP BY TID HAVING COUNT(*)>1;
(viii) SELECT COUNT(*), SUM(FEES) FROM COURSE WHERE STARTDATE< -09-
ANSWER:
v) TID TNAME
103 DEEPTI
106 MANIPRABHA
119
vi) DISTINCT TID
101
103
102
104
105
vii) TID COUNT(*) MIN(FEES)
101 2 12000
Viii) COUNT(*) SUM(FEES)
4 65000
Q2. Consider the following tables GAMES and PLAYER. Write SQL commands for the statements to (iv)
and give outputs for SQL queries (v) to (viii).
Table: GAMES
FACULTY
COURSES
121
ANSWER
I. Select * from faculty where salary > 12000;
II. Select * from [Link] fees between 15000 and 50000;
III.
IV. Select * from faculty fac,courses cour where fac.f_id = cour.f_id and [Link] = 'Sulekha' order by
cname desc;
V. 4
VI.
Q-4 Write SQL Command for (a) to (e) and output of (f)
TABLE : GRADUATE
122
ANSWER
a)
b) SELECT NAME,STIPEND,SUBJECT, STIPEND*12 from GRADUATE;
c) SELECT SUBJECT,COUNT(*) from GRADUATE group by SUBJECT having
d)
e) ALTER TABLE GRADUATE ADD(GRADE CHAR(2));
f) (i) 63
ii. 800
iii. 475
iv. 4
Q.5. Write SQL queries for (i) to (iv) and find outputs for SQL queries (v) to (viii), which are based on the
tables.
Table : VEHICLE
CODE VTYPE PERKM
101 VOLVO BUS 160
102 AC DELUXE BUS 150
103 ORDINARY BUS 90
105 SUV 40
104 CAR 20
Note : PERKM is Freight Charges per kilometer , VTYPE is Vehicle Type
Table : TRAVEL
NO NAME TDATE KM CODE NOP
101 Janish Kin 2015-11-13 200 101 32
103 Vedika Sahai 2016-04-21 100 103 45
105 Tarun Ram 2016-03-23 350 102 42
102 John Fen 2016-02-13 90 102 40
107 Ahmed Khan 2015-01-10 75 104 2
104 Raveena 2016-05-28 80 105 4
NO is Traveller Number
KM is Kilometer travelled
NOP is number of travellers travelled in vehicle
TDATE is Travel Date
(i) To display NO, NAME, TDATE from the table TRAVEL in descending order of NO.
(ii) To display the NAME of all the travellers from the table TRAVEL who are travelling by vehicle
withcode 101 or 102.
(iii) To display the NO and NAME of those travellers from the table TRAVEL who travelled
-12- and -04-
(iv) To display all the details from table TRAVEL for the travellers, who have travelled distance
more than 100 KM in ascending order of NOP.
(v) Modify the definition of column VTYPE. Increase its size to 20.
(vi) SELECT COUNT (*), CODE FROM TRAVEL GROUP BY CODE HAVING COUNT(*)>1;
(vii) SELECT DISTINCT CODE FROM TRAVEL;
(viii) SELECT [Link],NAME,VTYPE FROM TRAVEL A,VEHICLE B WHERE [Link]=[Link] ANDKM<90;
123
ANSWER
(i) SELECT NO, NAME, TDATE FROM TRAVEL ORDER BY NO
(ii) SELECT NAME FROM TRAVEL WHERE OR
SELECT NAME FROM TRAV
(iii) SELECT NO, NAME from TRAVEL WHERE TDATE >= AND TDATE <=
OR
SELECT NO, NAME from TRAVEL WHERE TDATE BETWEEN -04- AND -12-
(iv) SELECT * FROM TRAVEL WHERE KM > 100 ORDER BY
(v) ALTER TABLE VEHICLE MODIFY VTYPE VARCHAR(20);
124
INTERFACE PYTHON WITH SQL DATABASE
Database connectivity
Database connectivity refers to connection and communication between an application and a database
system. The steps are
(i) We use pip install [Link]:This command we use to install library of MySQL with python.
(ii) import [Link]
get any error means this module working properly.
(iii) mydb=[Link] =
To make the connection with MySQL database using connect() function where user, password and
database are as per our system which we assign during installing of MySQL. Mydb is connection object.
(iv)cursor = [Link]() -a database cursor is useful control structure for row by row
processing of records
(v) : It will execute the sql query and store the retrieved
records.
(vi) data = [Link]() : 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 = [Link]
It is the property of cursor object that return number of rows retrieved.
[Link]()
[Link]()
values user has passed. So for that we have this option parameterized queries. There are two
ways to use parameterized queries:
1. with % formatting pattern
2. with {}.format pattern
With % formatting pattern
This pattern takes the general form f % v, where f is a format and v is the value. Consider the
following code:
import [Link] as msql
import time
mydb=[Link](host='localhost',user='root',passwd='MySQL@123',database='School')
cur=[Link]()
In this pattern you can write {} where the value is placed followed by .format(values).
Consider the following code:
import [Link] as msql
import time
mydb=[Link](host='localhost', user='root', passwd='kvs@123',database='School')
cur=[Link]()
[Link] ( "select * from students where marks >{}" .format(80) )
d=[Link]()
for r in d :
print(r)
[Link]("select * from students where grade='{}'".format('B1'))
d=[Link]()
for r in d :
print(r)
128
Close the connection
Since the database can keep limited number of connections at a time, we must close the connection
using
[Link]()
Eg: [Link]()
[Link]()
( VERY SHORT ANSWER QUESTIONS- 1 MARK)
Q1. Which command is use to install MySQL library in python?
Ans: pip install MySQL. Connector with path of python
Q2. Which method we use to establish the connection?
Ans: connect() method with connection object.
Q3. Which statement we use to access the MySQL module?
Ans: import [Link]
Q4. What is the Database Connector?
Ans. A database connector is a software that connects an application to any database.
Q5. Which function is used to check the successful connection?
Ans .is_connected() method
ii. fetchone( ) fetches the next row as a sequence; returns None when no more data
iii. fetchmany(n) :It will return number of records as per value of n and by-default only one record.
print(mycon)
2. How to create a database in MySQL through Python ?
Ans.
import [Link]
cursor=[Link]( )
cursor=[Link]()
for i in cursor:
print(i)
4. How to create a table in MySQL through Python ?
Ans.
import [Link]
cursor=[Link]()
sname varchar(30), gender char(2),
5. Write the Python code to insert data into student table of database kvs in MYSQL .
Ans.
import [Link]
,
)
cursor=[Link]()
130
query= insert into student values( {}, , , , , {}
[Link](query)
[Link]( )
6. How to fetch data in Python from a student table of education database in MySQL ?
Ans.
import [Link]
cursor=[Link]()
cursor=[Link]()
[Link]( )
8. Write the Python code to delete a record from the student table of education database
Ans.
import [Link]
cursor=[Link]()
[Link]( )
9. [Link] want to interface python with mysql and write some code help him to write the code
import_____________.connector #Line1
mydb=[Link]._______
#Line2
cursor=mydb.___________() #Line3
#Line4
data=cursor.__________() # Line 5 To retrieved all records
count=cursor.__________ #Line6 To count total rows
Ans: Line1:-mysql, Line2:-connect, Line3:cursor ,
Line4: execute, Line5: fetchall, Line6: rowcount
10. What is a cursor? Explain how to initiate the same.
ANS A cursor is an object which helps to execute the query and fetch the records from the database.
import [Link]
myconn = [Link] (host='localhost',user='root',password='root',database='XIICS' )
mycursor = [Link]()
[Link]("MySQL Command")
[Link]()
[Link] are the difference between fetchone(),fetchmany(),fetchall()? Hint- Above given
131
WORKSHEET INTERFACE PYTHON WITH MYSQL (Multiple Choice Questions-1Mark)
1 Identify the name of connector to establish bridge between Python and MySQL
a. [Link]
b. connector
c. [Link]
d. [Link]
Ans [Link]
else:
a. [Link]()
b. [Link]()
c. con.is_connected()
d. con.is_connect()
Ans c. con.is_connected()
3 Which of the following component act as a container to hold all the data returned
from the query and from there we can fetch data one at a time?
a. ResultSet
b. Cursor
c. Container
d. Table
Ans b. Cursor
Ans fetchall() function is used to fetch all the records from the cursor in the form of tuple.
fetchone() is used to fetch one record at a time. Subsequent fetchone() will fetch
next records. If no more records to fetch it return None.
132
6 Which attribute of cursor is used to get number of records stored in a cursor
(Assuming cursor name is mycursor)?
a. [Link]
b. mycursor.row_count
c. [Link]
d. [Link]
Ans d. [Link]
7 Which of the Symbols are used for passing parameterized query for execution to
cursor?
a. %
b. {}
c. $
d. Bothaandb
Ans d. Both a and b
10 Consider the following Python code is written to access the record of CODE passed
to function:
Complete the missing statements:
def Search(eno):
#Assumebasic setup import, connection and cursor is created
query="select * from emp where empno= ".format(eno)
[Link](query)
results = mycursor.
print(results)
a. {} and fetchone()
b. fetchone() and {}
c. %s and fetchone()
d. %eno and fetchone()
Ans a. {} and fetchone()
133
UNSLOVED QUESTIONS
(Multiple Choice Questions)
Worksheet 1
[Link] of the following is not a legal method for fetching records from database.
a)fetchone() b)fetchtwo() c)fetchall() d)fetchmany()
2
a)fetch() b)fetchone() c)fetchtuple d)none of these.
3
a)done() b)reflect() c)commit() d)final
[Link] run an sql query from within python you may use cursor.------------- method.
a)query() b)execute() c)commit() d)final()
5.
a)database object b)connection object c)fetch object d)query object
ANSWER KEY FOR WORKSHEET1 (MCQ)
1. b)fetchtwo() 2. b)fetchone() 3. c)commit() 4. b)execute() 5. b)connection object
WORKSHEET 2
[Link] following table represents information on sales representatives of ABC company with the following
data.
Sales man name
Code
Address
commission
salary.
Write Python code to create the above table.
Q2. Write Python mysql connectivity program to retrieve all the data from a table student.
Q3. Consider the following python code for updating the records.
import [Link]
mydb=[Link](host="localhost",user="root",passwd="system",database="student")
mycursor=[Link]()
[Link]("UPDATE STUDENT SET MARKS=95 WHERE MARKS=50")
print([Link],"RECORD UPDATED")
Code is running but the record in actual database is not updating, what could be the possible reason?
Q4. Write a python connectivity program to retrieve data, one record at a time from EMP table for
employees with id<10.
Q5. Write python connectivity program to delete the employee record whose name is read from the
keyboard at execution time.
2. import [Link]
134
conn=[Link](host="localhost",user="root",passwd="syste
m",database="DB")
c=[Link]()
[Link]("select * from student")
r=[Link]()
while r is not None:
print(r)
r=[Link]()
[Link]()
4. import [Link]
conn=[Link](host="localhost",user="root",passwd="system",database="com")
c=[Link]()
[Link]("select * from emp where id>10")
r=[Link]()
while r is not None:
print(r)
r=[Link]()
[Link]()
5. import [Link]
mydb=[Link](host="localhost",user="root",passwd="system",database="DB")
mycursor=[Link]()
[Link]( )
135