真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql數(shù)據(jù)庫應用管理+亂碼+字符集的示例分析

這篇文章主要為大家展示了“MySQL數(shù)據(jù)庫應用管理+亂碼+字符集的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“mysql數(shù)據(jù)庫應用管理+亂碼+字符集的示例分析”這篇文章吧。

公司主營業(yè)務:成都網(wǎng)站建設、網(wǎng)站設計、移動網(wǎng)站開發(fā)等業(yè)務。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)推出達茂旗免費做網(wǎng)站回饋大家。

insert

測試表mysql> show create  table test\G

create  table test(

id int(4)  not  null   AUTO_INCREMENT,

name char(20) not null,

primary  key(id)

);

mysql> insert    into  test(id,name)  value(1,'hequan');

mysql> select* from test;

mysql> insert into test(name)  value('hequan');  //ID是自增的,可以插name

mysql>  insert into test  value(3,'hequna'),(4,'hequan'); // 不給列,直接按順序插入

 mysqldump -uroot -p123456 -B oldboy >/tmp/oldboy_bak.sql  //備份數(shù)據(jù)庫 備份用檢查一遍

grep -E -v "#|\/|^$|--" /tmp/oldboy_bak.sql 


select           from            where 

mysql> select id,name from test  where name='hequan'  and/or  id=4;

mysql> select id,name from test   limit 0,2; //從第0行開始,查2行

mysql> select id,name from test  where id>2 and id<4;

mysql> select id,name from test   order by id    asc/desc;

多表查詢

mysql> select student.Sno,student.Sname,course.Cname,SC.Grade  from student,course,SC   where  student.Sno=SC.Sno and  course.Cno=SC.Cno  order by Sno ;

mysql> explain  select * from test where name='hequan'\G;//執(zhí)行過程  判斷有么有走索引

possible_keys: NULL

rows: 2

mysql> create index index_name on test(name);

possible_keys: index_name

rows: 1


update

mysql> update   test set  name='xx'   where   id=4   ;

 mysql -uroot -p123456 oldboy < /tmp/oldboy_bak.sql //恢復數(shù)據(jù),增量恢復。


增量恢復  

#log-bin=mysql-bin  打開

/application/mysql/data/mysql-bin-hequan.000001

mysqlbinlogmysql-bin-hequan.000001

 mysqladmin -uroot -p123456  flush-log 切割日志

mysql-bin-hequan.000002

 mysqlbinlog -d oldboymysql-bin-hequan.000001  >bin.sql

把錯誤的語句刪除掉

mysql  -uroot -p123456 oldboy 

binlog只記錄主數(shù)據(jù)庫更改 


delete

mysql> delete from  test  where id=3;   > <

mysql> truncate table test;  //清空表


更改表的字段

mysql> altertable test add sex  char(4)  after name;  //在name后面添加sex  // first


mysql> rename  table test to test1;

mysql> alter table test1 rename to test;


mysql> drop table test;


亂碼

統(tǒng)一字符集   /etc/my.cnf       改動3個           重啟服務

set  names  utf8;

cat  /etc/sysconfig/i18n              //系統(tǒng)環(huán)境

LANG="zh_CN.UTF-8"

vim  /etc/my.cnf                               //服務器端 和客戶端

[client]

default-character-set=utf8

[mysqld]

character-set-server=utf8    //5.5

default-character-set=utf8   //5.1

[mysql]

default-character-set=utf8

show  variables like 'character_set%';

SecureCRT客戶端要更改為utf8


 數(shù)據(jù)庫字符集         GBK   UTF-8   latin1

mysql> show character set;

+----------+-----------------------------+---------------------+--------+

| Charset  | Description                           | Default collation   | Maxlen |

+----------+-----------------------------+---------------------+--------+

| utf8     | UTF-8 Unicode                      | utf8_general_ci     |      3 |

| gbk      | GBK Simplified Chinese       | gbk_chinese_ci      |      2 |

| latin1   | cp1252 West European        | latin1_swedish_ci   |      1 |

| utf8mb4  | UTF-8 Unicode               | utf8mb4_general_ci  |      4 |


mysql> show  variables like 'character_set%';

+--------------------------+------------------------------------+

| Variable_name            | Value                              |

+--------------------------+------------------------------------+

| character_set_client             | utf8                               |    客戶端

| character_set_connection    | utf8                               |   鏈接

| character_set_database       | latin1                             |  數(shù)據(jù)庫字符集

| character_set_filesystem      | binary                             |

| character_set_results            |   utf8                               |        返回結果

| character_set_server            | latin1                             |  服務器字符集

| character_set_system           | utf8                               |

| character_sets_dir                   | /application/mysql/share/charsets/ |

+--------------------------+------------------------------------+

 mysql -uroot -p123456  --default-character-set=latin1

set  names  latin1

臨時生效


mysql更改已有數(shù)據(jù)表的字符集,保留原有數(shù)據(jù)內(nèi)容

環(huán)境:在應用開始階段沒有正確的設置字符集,在運行一段時間以后才發(fā)現(xiàn)存在不能滿足需求需要調(diào)整,又不想丟棄這段時間的數(shù)據(jù),那么就需要進 行字符集的修改。字符集的修改不能直接通過"alter database character set ***" 或者 "alter table tablename character set ***"命令進行,這兩個命令都沒有更新已有記錄的字符集,而只是對新創(chuàng)建的表或者記錄生效。

那么已有記錄的字符集調(diào)整,需要怎么操作呢?

以下模擬的是將latin1字符集的數(shù)據(jù)庫修改成GBK字符集的數(shù)據(jù)庫的過程:

(1) 導出表結構

mysqldump -uroot -p --default-character-set=gbk    -d   name   > createdb.sql

其中--default-character-set=gbk表示設置以什么字符集連接,-d表示只導出表結構,不導出數(shù)據(jù)

(2) 手工修改createdb.sql中表結構定義中的字符集為新的字符集

sed -i  's#latin1#gbk#g'  createdb.sql

(3) 確保記錄不再更新,導出所有記錄

mysqldump -uroot -p --quick --no-create-info --extended-insert --default-character-set=latin1 name > data.sql

--quick:該選項用于轉儲大的表。它強制Mysqldump從服務器一次一行的檢索表中的行,而不是檢索所有的行,兵輸出前將它緩存在內(nèi)存中

--extended-insert:使用包括幾個values列表的多行Insert語法,這樣使轉儲文件更小,重載文件更快

--no-create-info:不屑重新創(chuàng)建每個轉儲表的create table語句

--default-character-set=latin1:按照原有的字符集導出所有數(shù)據(jù),這樣導出的文件中,所有中文都是可見的,不會保存成亂碼

(4) 打開data.sql,將SET NAMES latin1 修改成SET NAMES gbk

(5) 使用新的字符集創(chuàng)建新的數(shù)據(jù)庫

create database newdatabasename default charset gbk;

(6) 創(chuàng)建表,執(zhí)行createdb.sql

mysql -uroot -p newdatabasename < createdb.sql

(7) 導入數(shù)據(jù),執(zhí)行data.sql

mysql -uroot -p newdatabasename < data.sql

(8)查看之前,確認本地環(huán)境,是不是都改成了gbk模式??梢杂?nbsp; 臨時更改  測試用

set names   gbk;

以上是“mysql數(shù)據(jù)庫應用管理+亂碼+字符集的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站名稱:mysql數(shù)據(jù)庫應用管理+亂碼+字符集的示例分析
網(wǎng)站鏈接:http://weahome.cn/article/ieesgj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部