MySQL是一個(gè)開(kāi)源的關(guān)系型數(shù)據(jù)庫(kù)管理系統(tǒng),被廣泛地應(yīng)用于Web應(yīng)用開(kāi)發(fā)。在使用MySQL進(jìn)行Web應(yīng)用開(kāi)發(fā)時(shí),對(duì)于數(shù)據(jù)庫(kù)的操作十分重要,而數(shù)據(jù)庫(kù)的創(chuàng)建是首要的工作。在本文中我們將介紹如何在Windows環(huán)境下使用mysql創(chuàng)建數(shù)據(jù)庫(kù)工具。
mysql創(chuàng)建數(shù)據(jù)庫(kù)工具官方下載地址:https://dev.mysql.com/downloads/installer/
步驟1 :下載mysql創(chuàng)建工具
進(jìn)入官方地址,點(diǎn)擊下載MySQL Installer按鈕 ![下載界面](https://dev.mysql.com/downloads/images/mysql-installer-community-8.0.11-1.png)
步驟2 :安裝mysql創(chuàng)建工具
下載完成后,進(jìn)入下載文件夾,運(yùn)行下載的文件,按照提示安裝即可。 ![安裝程序選擇](https://dev.mysql.com/doc/refman/5.5/en/images/installation-wizard-initializing-the-installation.png) ![安裝過(guò)程](https://dev.mysql.com/doc/refman/8.0/en/images/mysql-installer-welcome.png) ![Installer安裝工具](https://dev.mysql.com/doc/refman/8.0/en/images/mysql-installer-custom-walkthrough.png) ![MySQL產(chǎn)品選擇](https://dev.mysql.com/doc/refman/8.0/en/images/mysql-installer-custom-product-selection.png) ![MySQL安裝和配置](https://dev.mysql.com/doc/refman/8.0/en/images/mysql-installer-custom-item-setup-options.png) ![安裝視圖提示](https://dev.mysql.com/doc/refman/8.0/en/images/mysql-installer-custom-download-installer.png)
步驟3 :安裝成功
安裝完成后,檢查是否成功安裝MySQL Server,如果安裝成功,下一步進(jìn)行數(shù)據(jù)庫(kù)創(chuàng)建。 打開(kāi)cmd窗口,輸入mysqld --version,若出現(xiàn)版本信息,說(shuō)明MySQL Server安裝成功。 ![檢查安裝版本信息](https://dev.mysql.com/doc/refman/8.0/en/images/mysql-installer-custom-walkthrough-finished.png) 創(chuàng)建新數(shù)據(jù)庫(kù) $ mysqladmin -u root -p create mydatabasename
通過(guò)以上三個(gè)步驟,你就可以自己創(chuàng)建屬于自己的數(shù)據(jù)庫(kù)啦!