SQL Tutorial
SQL
Copyright IntelliPaat. All rights reserved
Agenda
Creating, Using, and Dropping a
Database in SQL
Copyright IntelliPaat. All rights reserved
Creating a Database: Syntax
Let’s see how
to create a
database!
CREATE DATABASE databasename;
Copyright IntelliPaat. All rights reserved
Using a Database: Syntax
Let’s see how
to use a
database!
USE [DatabaseName];
Copyright IntelliPaat. All rights reserved
Dropping a Database: Syntax
Let’s see how
to drop a
database!
DROP DATABASE databasename;
Copyright IntelliPaat. All rights reserved
Thank You
Copyright IntelliPaat. All rights reserved