MySQL資料庫管理常用命令

來源:互聯網
上載者:User

安裝利用RPM包安裝Mysql,設定TCP 3306連接埠的iptables。

root密碼管理設定root使用者的密碼mysqladmin -uroot password 'password'。

修改root使用者的密碼mysqladmin -uroot -p password 'password'。

資料庫,表管理進入mysqlmysql -h hostname -uroot -p。

建立資料庫mysql> create database location。

匯入資料結構mysql -uroot -p location <./location.sql。

查看資料庫mysql> show databases;

進入某個庫mysql> use location;

查看錶資訊mysql> show tables;

查看錶結構mysql> desc Contact;

改表名mysql> rename table Contact to Contact_new。

刪除庫mysql> drop database location。

刪除表mysql> drop table Contact。

授權部分建立使用者並授權mysql> grant all on location.* to gk1020@'10.1.11.71' identified by 'gk1020'。

取消授權mysql> revoke all on location.* from gk1020@'10.1.11.71'。

重新整理許可權mysql> flush privileges。

動作陳述式查詢mysql> select * from Contact。

mysql> select count(*) from Contact。

修改mysql> update Contact set RegTime=‘2008-01-01 00:00:00’ where id=1。

mysql> update Contact set RegTime=‘2008-01-01 00:00:00’,CID=1 where id=1。

插入mysql> insert into Contact values('',''…)

mysql> insert into Contact(ID,CID,Contact) values('',''…)

刪除mysql> delete from Contact where id=1。

匯出匯出資料庫locationmysqldump -uroot -p location >./location.sql。

匯出某個表mysqldump -uroot -p --database location --table Contact >./contact.sql。

匯出資料庫location的資料結構mysqldump -d -uroot -p location >./location.sql。

複製表複製表Contact為Contact_bakmysql> create table Contact_bak as select * from Contact。

複製表Contact的結構mysql> create table Contact_bak as select * from Contact where 1=2。

查看正在執行的任務mysql> show processlist。

說明:

location為庫名,Contact為表名

相關文章

聯繫我們

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