SQL Short Note
SQL Short Note
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)
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
(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.