1、Apache 和 MySQL變綠后,這應(yīng)該都會了。點擊Mysql后的admin,
超過10多年行業(yè)經(jīng)驗,技術(shù)領(lǐng)先,服務(wù)至上的經(jīng)營模式,全靠網(wǎng)絡(luò)和口碑獲得客戶,為自己降低成本,也就是為客戶降低成本。到目前業(yè)務(wù)范圍包括了:網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè),成都網(wǎng)站推廣,成都網(wǎng)站優(yōu)化,整體網(wǎng)絡(luò)托管,小程序定制開發(fā),微信開發(fā),App定制開發(fā),同時也可以讓客戶的網(wǎng)站和網(wǎng)絡(luò)營銷和我們一樣獲得訂單和生意!
2、然后會進(jìn)入這個頁面,圖中方框中的是現(xiàn)在使用的語言,點擊后面的小三角,
3、點擊三角后會彈出這條語言選擇框,選擇圖中的中文選項,
4、Mysql的窗口就修改成中文的了,完成效果圖。
Mysql數(shù)據(jù)庫不能插入中文,一插入就報錯,是代碼輸入錯誤造成的,解決方法如下:
1、首先使用insert語句,把數(shù)據(jù)插入到數(shù)據(jù)庫表里。
2、運行后,發(fā)現(xiàn)插入語句報錯了。點擊語句,查看詳情,提示說插入的中文語句是不正確的字符串內(nèi)容。
3、這時右鍵點擊插入數(shù)據(jù)的表,然后點擊表設(shè)計。
4、打開表設(shè)計界面后,點擊上方的Option選項。
5、默認(rèn)新建的表字符集用的是latin1字符集。要插入中文內(nèi)容,需要將其改成ubf8字符集。
6、除此之外,需要保存中文內(nèi)容的字段,也需要將其改成utf8字符集。
7、修改好,保存后,再次運行插入sql語句,可以看到成功插入中文數(shù)據(jù)了。
1、創(chuàng)建測試表,
create table test_zw(id number, v_date date);
2、插入測試數(shù)據(jù)
insert into test_zw values(1,20190101);
insert into test_zw values(2,20190102);
insert into test_zw values(3,20190103);
insert into test_zw values(4,20190104);
3、查詢表中記錄,select t.* from test_zw t;
4、編寫sql,將v_date字段翻譯為中文'日期',select t.*, V_DATE AS '日期' from test_zw t;
有兩種方法...你試一下...不行的話加我的QQ 76558882
1. 修改 mysql 安裝目錄下的 my.ini
修改 default-character-set=latin1
把latin1 改為 gb2312 或 gbk 注意: 修改兩處
CLIENT SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by MySQL client applications.
# Note that only client applications shipped by MySQL are guaranteed
# to read this section. If you want your own MySQL client program to
# honor these values, you need to specify it as an option during the
# MySQL client library initialization.
#
[client]
port=3306
[mysql]
default-character-set=latin1 //把 latin1 改為 gb2312或 gbk
# SERVER SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by the MySQL Server. Make sure that
# you have installed the server correctly (see above) so it reads this
# file.
#
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir="C:/Program Files/MySQL/MySQL Server 5.0/"
#Path to the database root
datadir="C:/Program Files/MySQL/MySQL Server 5.0/Data/"
# The default character set that will be used when a new schema or table is
# created and no character set is defined
default-character-set=latin1
//將latin1 改為 gb2312 或 gbk
2. 進(jìn)入在命令提示符下登錄mysql
輸入 charset gb2312
你再嘗試使用 insert into 插入一條記看看...
utf8Web頁面:
查詢之前執(zhí)行一下:
set character set 'utf8' 語句(SQL)
同樣寫入數(shù)據(jù)執(zhí)行一下:
set names 'utf8'
如果你是用的客戶端直接查詢mysql,可將上面的utf8改為gbk試試
mysql把語言改成中文的步驟如下:
第一步我們需要打開軟件,創(chuàng)建一個數(shù)據(jù)庫,如下圖所示:
第二步創(chuàng)建數(shù)據(jù)庫之后,需要創(chuàng)建一張漢字和拼音對照表,使用create table語句創(chuàng)表,如下圖所示:
第三步我們打開表,可以看到成功創(chuàng)建一張名為t_base_pinyin的表,并且含有pin_yin_和code_兩個字段,如下圖所示:
第四步我們使用INSERT INTO t_base_pinyin ()? VALUES ()語句來給漢字拼音對照表添加對照數(shù)據(jù),如下圖所示:
第五步我們打開t_base_pinyin ,可以看到對照數(shù)據(jù)已經(jīng)插入成功,如下圖所示:
第六步我們最后需要創(chuàng)建一個拼音轉(zhuǎn)換漢字的函數(shù),輸入完成之后進(jìn)行執(zhí)行,語句如下圖所示:
第七步我們輸入select to_pinyin('測試')語句進(jìn)行查詢,可以看到輸出to_pinyin('測試'),ceshi,已經(jīng)成功將中文轉(zhuǎn)換成拼音,如下圖所示: