Informatics Practices Practical 12 Class
Informatics Practices Practical 12 Class
Practices
Project
By
name
Academic year 2023-24
ACKNOWLED
GEMENT
I would like to extend my heartfelt thanks to my
teacher name, for providing me with the
opportunity to undertake this project and for
their constant guidance and expertise. Their
valuable insights and feedback have greatly
enhanced the quality of my work.
I would also like to thank our principal for
giving me this great opportunity to do a project.
Without their support and suggestions, this
project would not have been completed.
CERTIFICATE
This is to certify that <name> of
class <class> has completed his
Informatics Practices project
under the guidance of <teacher
name> for the academic year
2023-2024.
Teacher Signature
________________
Index
S.no
Topic
Page.no
Create database
1
2 Use database
3 Create table
4 Describe table
5 Adding columns
6 Describe table
8 display table
9 drop column
10 insert data into table
11 displaying name with condition
12 find min Max,sum,and,average of the marks
13 Query to order
14 Delete the details of table
15
delete table
16
delete database
17
18
MySQL Queries
Create database -
>>Create database <database name> ;
Use database –
>>use <database name> ;
Create table :-
Creates a table named "Students" with columns for student ID,
name, marks, and class.
>> create table <table name>
Adding Columns:
Adds a new column named "new_column" to the "Students"
table.
>> ALTER TABLE table_name
ADD column_name datatype;
Delete a column :-
Removes a specified column from the "Students" table.
>>ALTER TABLE Students DROP COLUMN column_to_drop;