MySQL資料庫管理常用命令

來源:互聯網
上載者:User

導讀:MySQL資料庫管理常用命令。

安裝利用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為表名

///////////////////////////////////////MySQL預存程序常用命令////////////

mysql>show procedure status:顯示資料庫中所有預存程序基本資料。包括所屬資料庫、預存程序名稱、建立時間等。

mysql>show create procedure sp_name顯示某一個預存程序的詳細資料。

1:建立預存程序:

create procedure 預存程序名字(

  [in|out|inout]參數 datatype

begin

MySQL語句:

end;
預設為in,習慣上市"in"的參數,;

如:
create procedure pr_add

(

  a int,b int

)

begin

   declare c int;

   if a is null then:

       set a=0;

   end if;

  if  b is null then:

              set b=0;

  end if;

  set c=a+b;

  select c as sum

end;(備忘:return c:不能再MySQL預存程序中使用,return只能在函數中使用。Declare為變數的聲明)。

2.///////////////////調用預存程序://///////////

call pr_add(10,20);

3.刪除預存程序:

drop procedure sp_name;

不能在一個預存程序中刪除另一個預存程序,只能調用另一個預存程序。

區塊定義:

begin

........

end;

條件陳述式:

if 條件 then

  statement

else

  statement

end if;

迴圈語句:

while  迴圈

end while ;

 

 

 

相關文章

聯繫我們

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