mysql16进制转10进制
在上一篇文章我们已经学习了python中的基础数据类型,今天我们来介绍一下数字中二进制、八进制、十六进制的表现形式及不同进制之间如何相互转换?1 二进制在python中我们使用 0b 开头,来表示二进...
2024.11.20执行升级/安装脚本时发生了错误:
An exception occurred while executing ‘ insert INTO biz_answer_question_report (id, identify, answer_record_id, assessment_id, section_id, item_id, question_id, score, total_score, response, status, comment) select a.id, concat_ws(‘_‘, a.resultId, a.questionId), a.resultId, a.testId, ‘0‘, if(b.item_id is null, 0, b.item_id), a.questionId, a.score, ‘0‘, conver_question_answer(b.answer_mode,a.answer), CASE a.status WHEN ‘noAnswer‘ THEN ‘no_answer‘ WHEN ‘none‘ THEN ‘reviewing‘ WHEN ‘partRight‘ THEN ‘part_right‘ WHEN ‘right‘ THEN ‘right‘ WHEN ‘wrong‘ THEN ‘wrong‘ ELSE ‘reviewing‘ END, a.teacherSay FROM testpaper_item_result_v8 a LEFT JOIN biz_question b ON a.questionId = b.id WHERE a.type ‘exercise‘ LIMIT 0, 80000; ‘: SQLSTATE[42000]: Syntax error or access violation: 1305 FUNCTION www_jiaoyu18_cn.conver_question_answer does not exist
问题解析根据手动创建程序返回错误: MySQL 返回: #1418 - This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) 判断是因为安全策略导致的,修改相关配置即可
解决方案执行命令
SET GLOBAL log_bin_trust_function_creators = 1;
升级完成在上一篇文章我们已经学习了python中的基础数据类型,今天我们来介绍一下数字中二进制、八进制、十六进制的表现形式及不同进制之间如何相互转换?1 二进制在python中我们使用 0b 开头,来表示二进...
2024.11.20Data truncation: Data too long for column ‘location‘ at row 1这个错误表示在向数据库中插入数据时,某个字段的数据长度超出了该字段的定义长度。...
2024.11.20这两天接手一个项目,数据库是mysql,然后服务大概六七个。服务启动的时候提示数据库连接不上,就是数据包收不到。开是排查原因:server检查mysql服务,登录服务器,发现服务没挂;从服务器直接执行...
2024.11.20概述有朋友问了Oracle跟mysql的一些区别的地方,所以这里做个简单总结,大的架构就不讲了,这里主要从主键、索引、分页、组函数和单引号来说明下。1、主键Mysql一般使用自动增长类型,在创建表时只...
2024.11.21一:异常信息:errorCode:1366 Caused by: java.sql.SQLException: Incorrect string value: ‘\xE7\xAE...‘ for c...
2024.11.15