mysql常用命令整理

來源:互聯網
上載者:User

標籤:localhost   使用者名稱   password   mysql   資料庫   

1、串連mysql資料庫:

#mysql -h 1.1.1.1 -uroot -p zabbix

2、mysql改密碼

mysqladmin命令格式: mysqladmin -u 使用者名稱 -p 舊密碼 password 新密碼(password函數)

2)忘記root密碼

# vi /etc/my.cnf 
在[mysqld]的段中加上一句:skip-grant-tables 

重新啟動mysqld 

3、mysql建新使用者並授權

grant select,insert,update,delete on *.* to [email protected]”%” Identified by “abc”;

4、mysql增刪改查

<增>:

 建庫:建立資料庫並分配使用者:

  1. CREATE DATABASE 資料庫名;

  2. GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER ON 資料庫名.* TO 資料庫名@localhost IDENTIFIED BY ‘密碼‘;

  3. SET PASSWORD FOR ‘資料庫名‘@‘localhost‘ = OLD_PASSWORD(‘密碼‘);


建表:mysql> create table MyClass(
    > id int(4) not null primary key auto_increment,
    > name char(20) not null,
    > sex int(4) not null default ‘0‘,
    > degree double(16,2));

<刪>:

如果存在則刪庫:mysql> drop database if exists drop_database;

刪表: mysql>drop table <表名>;

刪表記錄:mysql> delete from MyClass where id=1;

刪索引:mysql> alter table 表名 drop index 索引名;

刪欄位:mysql> alter table 表名 drop 欄位名;

<改>:
表中插入記錄:mysql> insert into table values(1,‘Tom‘,96),(2,‘Joan‘,99), (2,‘Wang‘, 59);

修改表中資料:mysql> update table set name=‘Mary‘ where id=1;

加索引:mysql> alter table 表名 add index 索引名 (欄位名1[,欄位名2 …]);

加主鍵索引:mysql> alter table 表名 add primary key (欄位名);

加唯一限制條件索引:mysql> alter table 表名 add unique 索引名 (欄位名);

添加新欄位:alter table 表名 add 欄位名 int not null default 0 after `Regionid` (可指定欄位位置)

修改欄位名及欄位類型:mysql> ALTER TABLE table_name CHANGE old_field_name new_field_name field_type;

重新命名表:alter table t1 rename t2;/ rename table 原表名 to 新表名;

<查>:

 查表結構:desc 表名;/ mysql> show columns from MyClass;

查表中資料: select <欄位1, 欄位2, ...> from < 表名 > where < 運算式 >;


5、Database Backupmysqldump

備份表結構:mysqldump -u user_name -p -d –add-drop-table database_name > outfile_name.sql
    -d 沒有資料 –add-drop-table 在每個create語句之前增加一個drop table





本文出自 “Linux_螞蟻” 部落格,請務必保留此出處http://onlyoulinux.blog.51cto.com/7941460/1529925

相關文章

聯繫我們

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