1、登入與登出
1)登入
windows下直接在DOS指令視窗以root使用者登入輸入mysql回車;
sql可進入mysql>介面。
2)退出
執行 exit 回車 即可。
3)修改密碼
mysql -u 使用者名稱-p 密碼password 新密碼
2、資料庫基本作業
1)顯示資料庫
mysql>create database name; //這裡的name是指需要建立的資料庫的名字。
3)刪除資料庫
mysql>drop database name; //這裡的name為需要移除的資料庫的名稱。
4)選擇資料庫
mysql>use databasename; //這裡的databasename指所選取的資料庫的名稱。
5)查看目前使用的資料庫
mysql>select database();
3、表的基本操作
1)顯示表
mysql>show tables;
2)顯示特定的表格結構
mysql>create table tablename(col1 type, col2 type....); //這裡的tablename是指要建立的表名。
4)刪除表格
mysql>drop table tablename; //這裡的tablename是指要建立的名詞。
5)插入資料
insert into tablename values(col1 value,col2 value....);
6) 資料
update tablename set col1 = newvalue where .....;
8)刪除資料
delete from tablename where ......;
4、檔案匯入
where ......;
4、檔案匯入
where ......;
4、檔案匯入
mysql>use databasename;
mysql>use databasename;
mysql>source d:/mysql.sql;
2)以文字
5、使用者權限操作
1)增加新用戶
grant select on databasename.* to username@localhost identified by "password"
2)增加所有權限給使用者
Ohviname. ;
3)增加資料庫的具體操作給使用者
grant select ,insert,update on databasename.* to username@localhost identified by "password"
tablename to username@localhost identified by "password"
5)刪除權限
revoke all privileges on *.* from username@local
6、MySQL資料庫備份遷移
1)遠端資料庫備份
1)遠端資料庫備份
1)遠端資料庫備份
mysql -ushenweiyan -p //登入MySQL
Enter password:
mysql> source /home/shenweiyan/mysql-bk/discuzdb_3_2.sql;