• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

使用MySQL数据库将汉字转换成拼音的一个C语言小程序

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

环境:

mysql:mysql-5.1.65

centos:centos 6.5

编译命令:

gcc -o chinesetopinyin chinesetopinyin.c -L/usr/lib/mysql -lmysqlclient -I/usr/include/mysql

源代码:

 1 #include <mysql/mysql.h>
 2 #include <stdio.h>
 3 #include <string.h>
 4 
 5 void ChineseToPinyin(char *pChinese, char *pPinyin)
 6 {
 7     MYSQL pMysql;
 8     MYSQL_RES *pRes;
 9     MYSQL_ROW Row;
10     char rgQuery[1024];
11     char rgQueryTemp[1024];
12     int iRet;
13     unsigned int i = 0;
14     
15     sprintf(rgQueryTemp, "select pinyin from chinese_to_pinyin where chinese='%s'", pChinese);
16     strcpy(rgQuery, rgQueryTemp);
17 
18     mysql_init(&pMysql);
19     if (!mysql_real_connect(&pMysql, "localhost", "root", "password", "user", 0, NULL, 0))
20     {
21         printf("Error connecting to database:%s\n", mysql_error(&pMysql));
22     }
23     
24     iRet = mysql_query(&pMysql, rgQuery);
25     if (iRet)
26     {
27         printf("error making rgQuery:%s\n", mysql_error(&pMysql));
28     }
29     else 
30     {
31         pRes = mysql_store_result(&pMysql);
32         if (pRes)
33         {
34             if (mysql_num_rows(pRes))
35             {
36                 while ((Row = mysql_fetch_row(pRes)))
37                 {
38                     for (i = 0; i < mysql_num_fields(pRes); i++)
39                     {
40                         strcpy(pPinyin, (Row[i] != NULL) ? Row[i] : pChinese);
41                     }
42                 }                
43             }
44             else
45             {
46                 strcpy(pPinyin, pChinese);
47             }            
48         }
49 
50         mysql_free_result(pRes);
51     }
52 
53     mysql_close(&pMysql);    
54 }
55 
56 int main(int argc, char *argv[])
57 {
58     char rgChinese[1024];
59     char rgPinyin[1024];
60     int i;
61     int iLength = 0;
62     
63     if (argc <= 1)
64     {
65         printf("too little argument!\n");
66     }
67 
68     iLength = strlen(argv[1]);
69     printf("iLength = %d\n", iLength);
70     
71     for (i = 0; i < iLength; i = i + 3)
72     {
73         char rgPinyinTemp[512];
74         strcpy(&rgChinese[0], &argv[1][i]);
75         strcpy(&rgChinese[1], &argv[1][i + 1]);
76         strcpy(&rgChinese[2], &argv[1][i + 2]);
77         rgChinese[3] = '\0';
78         printf("rgChinese = %s\n", rgChinese);
79         ChineseToPinyin(rgChinese, rgPinyinTemp);
80         strcat(rgPinyin, rgPinyinTemp);
81         rgPinyinTemp[0] = '\0';
82         rgChinese[0] = '\0';
83     }
84     
85     printf("%s:%s\n", argv[1], rgPinyin);
86 
87     return 0;
88 }

 

数据库汉字与拼音对照表:

use xxx;
create table if not exists chinese_to_pinyin (
chinese varchar(512),
pinyin varchar(512)
);

insert into chinese_to_pinyin(chinese,pinyin) values ('阿','a');
insert into chinese_to_pinyin(chinese,pinyin) values ('啊','a');
insert into chinese_to_pinyin(chinese,pinyin) values ('吖','a');
insert into chinese_to_pinyin(chinese,pinyin) values ('嗄','a');
insert into chinese_to_pinyin(chinese,pinyin) values ('腌','a');
insert into chinese_to_pinyin(chinese,pinyin) values ('锕','a');
insert into chinese_to_pinyin(chinese,pinyin) values ('爱','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('埃','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('碍','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('矮','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('挨','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('唉','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('哎','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('哀','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('皑','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('癌','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('蔼','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('艾','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('隘','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('捱','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('嗳','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('嗌','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('嫒','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('瑷','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('暧','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('砹','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('锿','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('霭','ai');
insert into chinese_to_pinyin(chinese,pinyin) values ('安','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('按','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('暗','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('岸','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('案','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('俺','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('氨','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('胺','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('鞍','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('谙','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('埯','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('揞','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('犴','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('庵','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('桉','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('铵','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('鹌','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('黯','an');
insert into chinese_to_pinyin(chinese,pinyin) values ('昂','ang');
insert into chinese_to_pinyin(chinese,pinyin) values ('肮','ang');
insert into chinese_to_pinyin(chinese,pinyin) values ('盎','ang');
insert into chinese_to_pinyin(chinese,pinyin) values ('凹','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('奥','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('敖','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('熬','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('翱','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('袄','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('傲','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('懊','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('澳','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('坳','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('拗','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('嗷','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('岙','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('廒','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('遨','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('媪','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('骜','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('獒','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('聱','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('螯','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('鏊','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('鳌','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('鏖','ao');
insert into chinese_to_pinyin(chinese,pinyin) values ('把','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('八','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('吧','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('巴','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('拔','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('霸','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('罢','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('爸','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('坝','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('芭','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('捌','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('扒','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('叭','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('笆','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('疤','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('跋','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('靶','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('耙','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('茇','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('菝','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('岜','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('灞','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('钯','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('粑','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('鲅','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('魃','ba');
insert into chinese_to_pinyin(chinese,pinyin) values ('百','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('白','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('败','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('摆','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('柏','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('佰','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('拜','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('稗','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('捭','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('掰','bai');
insert into chinese_to_pinyin(chinese,pinyin) values ('办','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('半','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('板','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('班','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('般','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('版','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('拌','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('搬','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('斑','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('扳','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('伴','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('颁','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('扮','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('瓣','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('绊','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('阪','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('坂','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('钣','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('瘢','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('癍','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('舨','ban');
insert into chinese_to_pinyin(chinese,pinyin) values ('帮','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('棒','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('邦','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('榜','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('梆','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('膀','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('绑','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('磅','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('蚌','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('镑','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('傍','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('谤','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('蒡','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('浜','bang');
insert into chinese_to_pinyin(chinese,pinyin) values ('报','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('保','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('包','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('剥','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('薄','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('胞','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('暴','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('宝','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('饱','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('抱','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('爆','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('堡','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('苞','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('褒','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('雹','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('豹','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('鲍','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('葆','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('孢','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('煲','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('鸨','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('褓','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('趵','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('龅','bao');
insert into chinese_to_pinyin(chinese,pinyin) values ('北','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('被','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('倍','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('备','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('背','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('辈','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('贝','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('杯','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('卑','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('悲','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('碑','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('钡','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('狈','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('惫','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('焙','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('孛','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('陂','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('邶','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('埤','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('萆','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('蓓','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('呗','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('悖','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('碚','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('鹎','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('褙','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('鐾','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('鞴','bei');
insert into chinese_to_pinyin(chinese,pinyin) values ('本','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('奔','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('苯','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('笨','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('畚','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('坌','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('贲','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('锛','ben');
insert into chinese_to_pinyin(chinese,pinyin) values ('泵','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('崩','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('绷','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('甭','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('蹦','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('迸','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('嘣','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('甏','beng');
insert into chinese_to_pinyin(chinese,pinyin) values ('比','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('必','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('避','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('闭','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('辟','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('笔','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('壁','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('臂','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('毕','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('彼','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('逼','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('币','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('鼻','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('蔽','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('鄙','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('碧','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('蓖','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('毙','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('毖','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('庇','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('痹','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('敝','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('弊','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('陛','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('匕','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('俾','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('荜','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('荸','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('薜','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('吡','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('哔','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('狴','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('庳','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('愎','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('滗','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('濞','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('弼','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('妣','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('婢','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('嬖','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('璧','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('畀','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('铋','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('秕','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('裨','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('筚','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('箅','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('篦','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('舭','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('襞','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('跸','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('髀','bi');
insert into chinese_to_pinyin(chinese,pinyin) values ('变','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('边','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('便','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('编','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('遍','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('辩','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('扁','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('辨','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('鞭','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('贬','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('卞','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('辫','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('匾','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('弁','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('苄','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('忭','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('汴','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('缏','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('飚','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('煸','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('砭','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('碥','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('窆','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('褊','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('蝙','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('笾','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('鳊','bian');
insert into chinese_to_pinyin(chinese,pinyin) values ('表','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('标','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('彪','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('膘','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('婊','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('骠','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('杓','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('飑','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('飙','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('镖','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('镳','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('瘭','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('裱','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('鳔','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('髟','biao');
insert into chinese_to_pinyin(chinese,pinyin) values ('别','bie');
insert into chinese_to_pinyin(chinese,pinyin) values ('鳖','bie');
insert into chinese_to_pinyin(chinese,pinyin) values ('憋','bie');
insert into chinese_to_pinyin(chinese,pinyin) values ('瘪','bie');
insert into chinese_to_pinyin(chinese,pinyin) values ('蹩','bie');
insert into chinese_to_pinyin(chinese,pinyin) values ('宾','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('彬','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('斌','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('濒','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('滨','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('摈','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('傧','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('豳','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('缤','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('玢','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('槟','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('殡','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('膑','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('镔','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('髌','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('鬓','bin');
insert into chinese_to_pinyin(chinese,pinyin) values ('并','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('病','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('兵','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('柄','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('冰','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('丙','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('饼','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('秉','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('炳','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('禀','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('邴','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('摒','bing');
insert into chinese_to_pinyin(chinese,pinyin) values ('波','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('播','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('伯','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('拨','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('博','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('勃','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('驳','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('玻','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('泊','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('菠','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('钵','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('搏','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('铂','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('箔','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('帛','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('舶','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('脖','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('膊','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('渤','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('亳','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('啵','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('饽','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('檗','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('擘','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('礴','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('钹','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('鹁','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('簸','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('跛','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('踣','bo');
insert into chinese_to_pinyin(chinese,pinyin) values ('不','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('部','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('步','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('布','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('补','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('捕','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('卜','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('哺','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('埠','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('簿','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('怖','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('卟','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('逋','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('瓿','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('晡','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('钚','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('钸','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('醭','bu');
insert into chinese_to_pinyin(chinese,pinyin) values ('擦','ca');
insert into chinese_to_pinyin(chinese,pinyin) values ('嚓','ca');
insert into chinese_to_pinyin(chinese,pinyin) values ('礤','ca');
insert into chinese_to_pinyin(chinese,pinyin) values ('采','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('才','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('材','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('菜','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('财','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('裁','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('彩','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('猜','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('睬','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('踩','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('蔡','cai');
insert into chinese_to_pinyin(chinese,pinyin) values ('参','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('残','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('蚕','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('灿','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('餐','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('惭','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('惨','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('孱','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('骖','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('璨','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('粲','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('黪','can');
insert into chinese_to_pinyin(chinese,pinyin) values ('藏','cang');
insert into chinese_to_pinyin(chinese,pinyin) values ('仓','cang');
insert into chinese_to_pinyin(chinese,pinyin) values ('苍','cang');
insert into chinese_to_pinyin(chinese,pinyin) values ('舱','cang');
insert into chinese_to_pinyin(chinese,pinyin) values ('沧','cang');
insert into chinese_to_pinyin(chinese,pinyin) values ('草','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('槽','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('操','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('糙','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('曹','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('嘈','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('漕','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('螬','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('艚','cao');
insert into chinese_to_pinyin(chinese,pinyin) values ('测','ce');
insert into chinese_to_pinyin(chinese,pinyin) values ('策','ce');
insert into chinese_to_pinyin(chinese,pinyin) values ('侧','ce');
insert into chinese_to_pinyin(chinese,pinyin) values ('册','ce');
insert into chinese_to_pinyin(chinese,pinyin) values ('厕','ce');
insert into chinese_to_pinyin(chinese,pinyin) values ('恻','ce');
insert into chinese_to_pinyin(chinese,pinyin) values ('岑','cen');
insert into chinese_to_pinyin(chinese,pinyin) values ('涔','cen');
insert into chinese_to_pinyin(chinese,pinyin) values ('层','ceng');
insert into chinese_to_pinyin(chinese,pinyin) values ('蹭','ceng');
insert into chinese_to_pinyin(chinese,pinyin) values ('查','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('差','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('插','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('察','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('茶','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('叉','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('茬','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('碴','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('搽','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('岔','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('诧','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('猹','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('馇','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('汊','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('姹','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('杈','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('楂','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('槎','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('檫','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('锸','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('镲','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('衩','cha');
insert into chinese_to_pinyin(chinese,pinyin) values ('柴','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('拆','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('豺','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('侪','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('钗','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('瘥','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('虿','chai');
insert into chinese_to_pinyin(chinese,pinyin) values ('产','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('铲','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('阐','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('搀','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('掺','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('蝉','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('馋','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('谗','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('缠','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('颤','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('冁','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('谄','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('蒇','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('廛','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('忏','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('潺','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('澶','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('羼','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('婵','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('骣','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('觇','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('禅','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('镡','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('蟾','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('躔','chan');
insert into chinese_to_pinyin(chinese,pinyin) values ('长','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('常','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('场','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('厂','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('唱','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('肠','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('昌','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('倡','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('偿','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('畅','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('猖','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('尝','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('敞','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('伥','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('鬯','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('苌','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('菖','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('徜','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('怅','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('惝','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('阊','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('娼','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('嫦','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('昶','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('氅','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('鲳','chang');
insert into chinese_to_pinyin(chinese,pinyin) values ('朝','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('超','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('潮','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('巢','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('抄','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('钞','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('嘲','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('吵','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('炒','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('怊','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('晁','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('耖','chao');
insert into chinese_to_pinyin(chinese,pinyin) values ('车','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('彻','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('撤','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('扯','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('掣','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('澈','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('坼','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('砗','che');
insert into chinese_to_pinyin(chinese,pinyin) values ('陈','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('沉','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('称','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('衬','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('尘','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('臣','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('晨','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('郴','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('辰','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('忱','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('趁','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('伧','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('谌','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('谶','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('抻','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('嗔','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('宸','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('琛','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('榇','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('碜','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('龀','chen');
insert into chinese_to_pinyin(chinese,pinyin) values ('成','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('程','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('称','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('城','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('承','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('乘','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('呈','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('撑','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('诚','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('橙','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('惩','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('澄','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('逞','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('骋','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('秤','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('丞','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('埕','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('噌','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('枨','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('柽','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('塍','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('瞠','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('铖','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('铛','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('裎','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('蛏','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('酲','cheng');
insert into chinese_to_pinyin(chinese,pinyin) values ('持','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('尺','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('齿','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('吃','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('赤','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('池','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('迟','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('翅','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('斥','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('耻','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('痴','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('匙','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('弛','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('驰','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('侈','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('炽','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('傺','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('坻','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('墀','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('茌','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('叱','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('哧','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('啻','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('嗤','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('彳','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('饬','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('媸','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('敕','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('眵','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('鸱','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('瘛','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('褫','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('蚩','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('螭','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('笞','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('篪','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('豉','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('踟','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('魑','chi');
insert into chinese_to_pinyin(chinese,pinyin) values ('虫','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('充','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('冲','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('崇','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('宠','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('茺','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('忡','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('憧','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('铳','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('舂','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('艟','chong');
insert into chinese_to_pinyin(chinese,pinyin) values ('抽','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('仇','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('臭','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('酬','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('畴','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('踌','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('稠','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('愁','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('筹','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('绸','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('瞅','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('丑','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('俦','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('帱','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('惆','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('瘳','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('雠','chou');
insert into chinese_to_pinyin(chinese,pinyin) values ('出','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('处','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('除','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('初','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('础','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('触','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('楚','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('锄','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('储','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('橱','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('厨','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('躇','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('雏','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('滁','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('矗','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('搐','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('亍','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('刍','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('怵','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('憷','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('绌','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('杵','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('楮','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('樗','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('褚','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('蜍','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('蹰','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('黜','chu');
insert into chinese_to_pinyin(chinese,pinyin) values ('揣','chuai');
insert into chinese_to_pinyin(chinese,pinyin) values ('搋','chuai');
insert into chinese_to_pinyin(chinese,pinyin) values ('啜','chuai');
insert into chinese_to_pinyin(chinese,pinyin) values ('膪','chuai');
insert into chinese_to_pinyin(chinese,pinyin) values ('踹','chuai');
insert into chinese_to_pinyin(chinese,pinyin) values ('传','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('船','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('穿','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('串','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('川','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('椽','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('喘','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('舛','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('遄','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('巛','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('氚','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('钏','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('舡','chuan');
insert into chinese_to_pinyin(chinese,pinyin) values ('床','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('创','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('窗','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('闯','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('疮','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('幢','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('怆','chuang');
insert into chinese_to_pinyin(chinese,pinyin) values ('吹','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('垂','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('锤','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('炊','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('捶','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('陲','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('棰','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('槌','chui');
insert into chinese_to_pinyin(chinese,pinyin) values ('春','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('纯','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('醇','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('椿','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('唇','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('淳','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('蠢','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('莼','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('鹑','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('蝽','chun');
insert into chinese_to_pinyin(chinese,pinyin) values ('戳','chuo');
insert into chinese_to_pinyin(chinese,pinyin) values ('绰','chuo');
insert into chinese_to_pinyin(chinese,pinyin) values ('辍','chuo');
insert into chinese_to_pinyin(chinese,pinyin) values ('踔','chuo');
insert into chinese_to_pinyin(chinese,pinyin) values ('龊','chuo');
insert into chinese_to_pinyin(chinese,pinyin) values ('此','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('次','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('刺','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('磁','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('雌','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('词','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('茨','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('疵','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('辞','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('慈','ci');
insert into chinese_to_pinyin(chinese,pinyin) values ('瓷','ci');
insert into chinese_to_pinyin(chinese,pinyin) v 

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++调用C#类库发布时间:2022-07-14
下一篇:
C#操作xmlSelectNodes,SelectSingleNode总是返回NULL与xPath介绍发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap