1.登入本機資料庫
mysql -uroot -p123456
2.檢視有幾個資料庫
show databases;
2.進入某個資料庫
use mysql;
3.檢視資料庫中有幾個表
show tables;
4.檢視錶結構
DESCRIBE table_name;
desc db;
5.檢視錶資料(列)
select * from db;
豎列顯示資料
select * from db\G;
6.初始下載用以下命令建立root密碼
mysqladmin -u root password "123456";
7.建立普通使用者
grant 許可權 on 此使用者可操作的資料塊或表 to 使用者名稱@登入方式 identified by 密碼;
grant select,insert,update,delete,create,drop on *.* to 'name'@'%' identified by 'password';
grant all on *.* to 'name'@'%' identified by 'password';
重新整理一下許可權
FLUSH PRIVILEGES;
檢視某使用者是的許可權
show grants for name;
8.啟動mysql
/usr/bin/mysqld_safe &
9.關閉mysql服務
/usr/bin/mysqladmin -u root -p shutdown
10.刪除資料庫
drop database mysql2;
11.建立資料庫,指定字符集utf-8
create database mysql2 charset utf-8;
檢視資料庫屬性(建立時的命令)
show create database mysql2;
12.顯示正在使用的資料庫名
SELECT DATABASE();