问题
- 返回给前端需提供键值对格式,原本查询数据库只返回值。
解决
- 创建游标对象时填入参数
- cursor=pymysql.cursors.DictCursor
sql = "SELECT user_id, email,nationality 国籍,learn_language1 学习语言,sex 性别,native_language 母语 From register"
输出
[{'user_id': 123216170, 'email': '[email protected]', '国籍': 'KR', '学习语言': 7, '性别': 0, '母语': 6}, {'user_id': 234242340, 'email': '[email protected]', '国籍': 'KR', '学习语言': 7, '性别': 0, '母语': 6}]
标签:Python,id,母语,user,sql,国籍,email,字典
From: https://www.cnblogs.com/QingshanY/p/16949305.html