我有一批这样的:
mysql.exe -h -u -p data_base < D:\data_base.dat
在这个data_base.bat 我有一个查询。此查询创建一个表,如下所示:
CREATE TABLE table_name(
select *
from a
where a.1 = 'Á'
);
我有 windows server 2008 r2 和 mysql server 5.6 所有数据库和表都在 latin1_swedish_ci 中。
当我运行 de .bat 时出现错误:
错误 1267 排序规则 (latin1_swedish_ci.IMPLICIT) 和 (cp850_general_ci, COERCIBLE) 用于操作“=”的非法混合
当我在查询中删除 '´' 时,它工作正常。
在我看来,这是我的 MySQL 服务器中的 latin1_swedish_ci 和 Windows 中的 cp850_general_ci 之间的冲突。可能吗?
谢谢