說說在 linux 環境下,如何新建 MySQL 資料庫例項
使用 secureCRT,遠端登入 linux 伺服器。
然後使用以下命令,登入 MySQL 伺服器:
mysql -u<賬號> -p<密碼>
一般使用有新建資料庫許可權的賬號。
登入成功後,會出現歡迎提示:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 23674
Server version: 5.6.19-enterprise-commercial-advanced MySQL Enterprise Server - Advanced Edition (Commercial)
Copyright (c) 2000 , 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
然後命令列字首變為 mysql>
碟符。
使用以下命令建立資料庫例項:
create database <資料庫例項名稱>;
注意:mysql 內的每個命令都必須以分號結尾。
最後使用 show 命令,列出當前所有的資料庫例項:
show databases;
這時就會看到我們剛剛新建的資料庫例項啦,是不是很簡單呀O(∩_∩)O哈哈~
注意:MySQL 預設是使用 latin 作為資料庫例項的字符集的,所以我們需要修改它:
alter database 資料庫名 character set utf8;
如果是之後修改的資料庫例項字符集,那麼會立即生效,不需要重啟 MySQL 伺服器哦O(∩_∩)O哈哈~