复制不安全的函数
我的一位同事说 mysql 中的 Length() 函数复制不安全。该函数用在update语句中。这是真的吗?在编写查询并考虑复制时我们还应该考虑什么
One of my colleague says Length() function in mysql is not replication safe. This function is used in update statement. Is this true? What else should we take in to consideration when writing a query and taking replication into account
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为您正在复制的表也可能具有不同的字符集。主从之间的表不要求完全相同、具有相同的索引等。
Because the table you are replicating too could have a different character set. There is no requirement for tables between master and slave to be exactly the same, have the same indexes etc.