Home > Database > Mysql Tutorial > body text

How can we create a MySQL database of our own choice?

PHPz
Release: 2023-08-28 20:21:02
forward
1021 people have browsed it

How can we create a MySQL database of our own choice?

CREATE DATABASE db_name can be used to create a MySQL database of our own choice. For example, to create a database named Sample, we should run the following command -

mysql> CREATE DATABASE Sample;

Query OK, 1 row affected (0.04 sec)
Copy after login

The above is the detailed content of How can we create a MySQL database of our own choice?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!