要看你的数据库里存的是什么格式的,如果是unicode的话: sql="select * from t.branch where name='河南'".decode('utf8') 如果是gb系列编码的话: sql="select * from t.branch where name='河南'".decode('utf8').encode('gb18030')