XII CS Practical List 2022-23
XII CS Practical List 2022-23
Database Management
1. Queries using Create database, Show databases, Use, Create table, Show Tables, Describe,
Rename, Alter, Select, From, Where, Insert, Update commands
2. Queries using DISTINCT, BETWEEN, IN, LIKE, IS NULL, ORDER BY, GROUP BY, HAVING
3. Queries for Aggregate functions- SUM( ), AVG( ), MIN( ), MAX( ), COUNT( )
4. WAP to connect Python with MySQL using database connectivity and perform the
following operation on data in database: Create a table in database
5. WAP to connect Python with MySQL using database connectivity and perform the
following operation on data in database: Insert record in the table
6. WAP to connect Python with MySQL using database connectivity and perform the
following operation on data in database: Fetch records from the table using fetchone( ),
fetchall() and fetchmany( ).
7. WAP to connect Python with MySQL using database connectivity and perform the
following operation on data in database: Update record in the table
8. WAP to connect Python with MySQL using database connectivity and perform the
following operation on data in database: Delete record from the table