0% found this document useful (0 votes)
30 views

Create Use Drop Database

The document discusses how to create, use, and drop databases in SQL including the syntax for each operation using the CREATE DATABASE, USE, and DROP DATABASE commands.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

Create Use Drop Database

The document discusses how to create, use, and drop databases in SQL including the syntax for each operation using the CREATE DATABASE, USE, and DROP DATABASE commands.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

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

You might also like