<== Back

Creating a database

1. Enter "create database sqlclass;" To confirm you can type "show databases;" You can name your database whatever you want, but we are creating one called sqlclass.

Deleting a database

1. Enter "drop database sqlclass;" To confirm, you can type "show datases;" Again, it doesn't have to be sqlclass, just enter the name of the database you want to drop.

<== Back