Mysql常用命令

來源:互聯網
上載者:User

標籤:mysql 常用命令

一、mysql服務的啟動和停止

net stop mysql

net start mysql


二、登陸mysql

文法如下: mysql -u使用者名稱 -p使用者密碼

鍵入命令mysql -uroot -p, 斷行符號後提示你輸入密碼,輸入12345,然後斷行符號即可進入到mysql中了,mysql的提示符是:

mysql>

注意,如果是串連到另外的機器上,則需要加入一個參數-h機器IP


三、增加新使用者

格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"

如,增加一個使用者user1密碼為password1,讓其可以在本機上登入, 並對所有資料庫有查詢、插入、修改、刪除的許可權。首先用以root使用者連入mysql,然後鍵入以下命令:

grant select,insert,update,delete on *.* to [email protected] Identified by "password1";


如果希望該使用者能夠在任何機器上登陸mysql,則將localhost改為"%"。

如果你不想user1有密碼,可以再打一個命令將密碼去掉。

grant select,insert,update,delete on mydb.* to [email protected] identified by "";


四、 操作資料庫

登入到mysql中,然後在mysql的提示符下運行下列命令,每個命令以分號結束。


1、顯示資料庫列表。

show databases;

預設有兩個資料庫:mysql和test。 mysql庫存放著mysql的系統和使用者權限資訊,我們改密碼和新增使用者,實際上就是對這個庫進行操作。


2、顯示庫中的資料表:

use mysql;

show tables;


3、顯示資料表的結構:

describe 表名;


4、建庫與刪庫:

create database 庫名;

drop database 庫名;


5、設定預設字元編碼:

set names = ‘編碼格式‘


6、建表刪表:

use 庫名;

create table 表名(欄位列表);

drop table 表名;


7、清空表中記錄:

delete from 表名;


8、顯示表中的記錄:

select * from 表名;


9、往表中加入記錄

mysql> insert into MYTABLE values ("xxxx","yyyy");


10、更新表中資料

mysql>update MYTABLE set sex="f" where name=‘xxxxxx‘;



五、匯出和匯入資料


1、匯出資料:

mysqldump --opt test > mysql.test

即將資料庫test資料庫匯出到mysql.test檔案,後者是一個文字檔

如:mysqldump -u root -p123456 --databases dbname > mysql.dbname

就是把資料庫dbname匯出到檔案mysql.dbname中。


2、匯入資料:

mysqlimport -u root -p123456 < mysql.dbname。

也可以用mysql>source d:/mysql.sql;


3、將文本資料匯入資料庫:

文本資料的欄位資料之間用tab鍵隔開。

use test;

load data local infile "檔案名稱" into table 表名;


六、退出MYSQL命令:

exit (斷行符號)


本文出自 “4699096” 部落格,請務必保留此出處http://4709096.blog.51cto.com/4699096/1631416

Mysql常用命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.