Experiment 02
Aim
Create a basic database and perform simple operations
Theory
-
Create Database // write from the link...
-
Use Database
The
USEstatement is used to select a database to work with. It tells the MySQL server which database to use for subsequent operations.SyntaxUSE database_name; -
Drop Database // write from the link...
Commands
CREATE DATABASE CollegeDB;
USE CollegeDB;
DROP DATABASE CollegeDB;
Conclusion
Successfully created a basic database and performed simple operations