Skip to main content

Experiment 02

Aim

Create a basic database and perform simple operations

Theory

  • Create Database // write from the link...

  • Use Database

    The USE statement is used to select a database to work with. It tells the MySQL server which database to use for subsequent operations.

    Syntax
    USE 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