MySQL的基本操作

來源:互聯網
上載者:User

一、串連MySQL
格式:mysql -h 遠程主機地址 -u 使用者名稱 -p 斷行符號
輸入密碼進入:

mysql -u root -p 斷行符號
Enter password: ,輸入密碼就可以進入
mysql> 進入了
退出命令:>exit 或者ctrl+D

二、MySQL管理與授權
1.修改密碼:
格式:mysqladmin -u 使用者名稱 -p 舊密碼 password 新密碼

2.增加新使用者:
>grant create,select,update....(授予相關的操作許可權)
->on 資料庫.*
-> to 使用者名稱@登入主機 identified by '密碼'

操作執行個體:
給root使用者添加密碼:
# mysqladmin -u root password 52netseek
因為開始root沒有密碼,所以-p舊密碼一項可以省略.
登陸測試:
# mysql -u root -p 斷行符號
輸入密碼,成功登陸.

將原有的mysql管理登陸密碼52netseek改為52china.
# mysqladmin -u root -p 52netseek password '52china'

建立資料庫添加使用者並授予相應的許可權:
mysql> create database myDatabase;
Query OK, 1 row affected (0.02 sec)

mysql> use myDatabase;
Database changed
mysql> grant create,select,update,insert,delete,alter
-> on myDatabase.*
-> to myDatabaseroot@localhost identified by '52netseek';
Query OK, 0 rows affected (0.00 sec)

授予所有的許可權:
>grant all privileges
>on myDatabase.*
>to myDatabaseroot@localhost identified by '52netseek';

回收許可權:
revoke create,select,update,insert,delete,alter
on myDatabase.*
from myDatabaseroot@localhost identified by '52netseek';

完全將myDatabaseroot這個使用者刪除:
>use mysql
>delete from user
where user='myDatabaseroot' and host='localhost';
>flush privileges; 重新整理資料庫

三,資料庫的一些簡單操作
1.顯示資料庫列表:
>show databases;
2.使其成為當前操作資料庫
>use mysql; 開啟資料庫.
>show tables; 顯示mysql資料庫中的資料表.
3.顯示資料表的表結構:
>describe 表名;
>describe user; 顯示user表的表結構:
4.建立資料庫,建表
>create database 資料庫名;
>use 資料庫名;
>create table 表名(欄位設定列表)
5.刪除資料庫,冊除表
>drop database 資料庫名;
>drop table 表名;
6.顯示表中的記錄;
select * from 表名;
7.修改資料庫結構:
增加欄位:
alter table dbname add column <欄位名><欄位類型>
修改欄位:
alter table dbname change <舊欄位名> <新欄位名><新欄位類型>
刪除欄位:
alter table dbname drop column <欄位名>

執行個體操作:
>create database office;
>use office;
mysql> create table personal(
-> member_no char(5) not null,
-> name char(5),
-> birthday date,
-> exam_score tinyint,
-> primary key(member_no)
-> );

>desc personal; 顯示表結構:

表中插入資料:
insert into personal values ('001','netseek','1983-03-15','95');
insert into personal values ('002','heihei','1982-02-24','90');
insert into personal values ('003','gogo','1985-05-21','85');
insert into personal values ('004','haha','1984-02-25','84');
insert into personal values ('005','linlin','1982-04-28','85');

查看錶的資料資訊:
mysql> select * from personal;

修改資料庫表:
要求: 在birthday這後增加一個為height的欄位,資料類型為tinyint.
將欄位exam_score 改名為scores,資料類型不變
>alter table personal
->add column height tinyint after birthday,
->change column exam_score scores tinyint;

mysql> select * from personal;

表中修改資料:
>update personal set scores=95+5 where name='netseek';
>select scores from personal where name='netseek';

刪除表名字為'gogo'所有的資訊中的的:
> delete from personal where name='gogo';

冊除資料庫中的表:
mysql>drop table if exists personal;

三、資料庫的匯入與匯出

匯入:
從檔案中載入資料庫:
mysql>load data infile "/tmp/name.txt" into table names;
mysql>select * from names;

匯出:
使用select into outfile 'filename'語句
使用mysqldump公用程式
使用select into outfile 'filename'語句

1.只能處理單個表,輸出檔案只有資料,沒有表結構
我們要將office,其中有一個表為personal,現在要把personal卸成文字檔out.txt:
>use office;
>select * from personal into outfile 'out.txt'; 可以看在/var/lib/mysql/office/目錄下有out.txt
select * from personal into outfile './out.txt'; 可以看在out.txt 在/var/lib/mysql/目錄下用out.txt

2.使用mysqldump公用程式(可以輕鬆處理多個表)
# cd /var/lib/mysql
匯出建立相關表的建表命令和插入指令
# mysqldump bbs >bbs.sql 將資料庫bbs匯入到bbs.sql中

如果要將bbs.sql匯入資料庫可以使用:
mysql> create database bbstest; 先建立一個名為office 的資料庫.
# mysql bbstest <bbs.sql (這個常用在將本地的資料庫檔案傳到伺服器上,再匯入到資料庫中)

只想匯出建表指令:
# mysqldump -d bbs >bbscreate.sql
只想匯出插入資料的sql指令:
# mysqldump -t bbs >bbsinsert.sql
同時匯出資料庫中建表指令和表中的資料:
# mysqldump -T./ bbs cdb_admingroups (其中./表示目前的目錄,cdb_admingroups為bbs資料庫其中的一個表)
#ls
cdb_admingroups.sql 匯出了建表指令
cdb_admingroups.txt 匯出了表中的資料

四、Database Backup

1.手動拷貝備份:
MySQL資料庫的檔案儲存在目錄/var/lib/mysql中,資料庫為每個庫建立一個目錄,所有的資料庫檔案都在這些目錄中.
[root@linuxhero mysql]#ls
[root@linuxhero mysql]#servcie mysqld stop 先停止資料庫
bbs mysql mysql.sock phpbb test office 顯示其中的資料庫.

如果我們要將現在的資料庫目錄備份為mysql.bak .
[root@linuxhero lib]# cp -rf mysql mysql.bak
如果資料庫遭到了破壞,現在要將資料庫恢複:
[root@linuxhero lib]# cp -rf mysql.bak/* mysql
恢複資料庫以後,var/lib/mysql中的檔案已改變了,要變更檔的所屬許可權必須改變MySQL資料庫的使用者讀寫權限。
所以我們得啟動和運行mysql,並登陸資料庫:
[root@linuxhero lib]# /etc/init.d/mysqld start
[root@linuxhero lib]# mysql
 
您正在看的MySQL教程是:MySQL資料庫學習筆記。-u root -p
Enter password:輸入密碼成功登陸.
mysql> show databses;

2.利用mysqldump來備份資料庫
[root@linuxhero mysql]# mysqldump --opt bbs -u root -p > bbs.sql
Enter password:
注:--opt添加備份的其它選項,bb為其中一個資料庫名,
上面的意思是:使用重新導向輸出將備份寫入到檔案bb.sql中.
[root@linuxhero mysql] #less bbs.sql

如果要恢複bb這個資料庫,則進行如下操作:
[root@linuxhero mysql] #mysql bbs -u root -p < bbs.sql

如果要備份所有資料庫:
[root@linuxhero mysql] #mysqldump --opt --all-databases -u root -p >mysql.bak
Enetr password:輸入密碼即可
恢複所有資料庫,不用輸入資料庫的名字:
[root@linuxhero mysql] #mysql -u root -p < mysql.bak
Enetr password: 輸入密碼即可

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.