Mysql drop database details, dropdatabase

Source: Internet
Author: User
Tags mysql drop database

Mysql drop database details, dropdatabase

Mysql deletes database drop database

Method-: Use cmd mode to download and delete

Mysql> drop database school;

This name deletes the school database. However, if the school database does not exist, an error is returned. Therefore, the complete statement should be written as follows:

Mysql> drop database if exists school;

Method 2: delete a database using a PHP script

In php, we can use the mysql_query function to execute SQL statements. Therefore, when deleting a database, we can directly use mysql_query to execute the DELETE command.

<? Php $ dbhost = 'localhost: 100'; $ dbuser = 'root'; $ dbpass = 'rootpassword'; $ conn = mysql_connect ($ dbhost, $ dbuser, $ dbpass ); if (! $ Conn) {die ('could not connect :'. mysql_error ();} echo 'connected successfully <br/> '; $ SQL = 'drop database tutorials'; $ retval = mysql_query ($ SQL, $ conn); if (! $ Retval) {die ('could not delete database: '. mysql_error ();} echo "Database TUTORIALS deleted successfullyn"; mysql_close ($ conn);?>

Thank you for reading this article. I hope it will help you. Thank you for your support for this site!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.