標籤: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增刪改查
<增>:
建庫:建立資料庫並分配使用者:
CREATE DATABASE 資料庫名;
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER ON 資料庫名.* TO 資料庫名@localhost IDENTIFIED BY ‘密碼‘;
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