linux命令导入mysql脚本文件到指定数据库
mysql -h192 168 43 231 -uroot -p123456 -P3306 -Dworkhour -e "source tiger shell workhour sql "
mysql -h192 168 43 231 -uroot -p123456 -P3306 -Dworkhour -e "source tiger shell workhour sql "
创建mysql自定义函数时,提示错误[Err] 1337 - Variable or condition declaration after cursor or handler declaration 原因:定义变量必须放在游标之前,而我放在了游标后面,所以导致此错误 解决:变量定义放在游标定义之前
DECLARE CONTINUE HANDLER FOR SQLSTATE 02000 SET s=1; 当fetch游标到了数据库表格最后一行的时候,设置s=1
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)
1320 - No RETURN found in FUNCTION techmanage project
msyql执行insert插入语句,提示Column count doesn t match value count at row 1错误
Mysql关联两张表时,产生错误提示Illegal mix of collations,先用工具把数据库、两张表的编码方式改变,需要改变字段的编码方式。
MySQL Document Store允许开发人员使用SQL关系表和JSON集合,本质上就是实现了一套 MongoDB
column count does`t match value count就是列数与第1行的值计数不匹配
MySQL的“utf8”实际上不是真正的UTF-8,“utf8”只支持每个字符最多三个字节,而真正的UTF-8是每个字符最多四个字节。MySQL一直没有修复这个bug,他们在2010年发布了一个叫作“utf8mb4”的字符集,绕过了这个问题