Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要替换一个字符,假设在我的数据库所有表的所有行中,所有“a”都应该替换为“b”。
有没有办法在 phpmyadmin 中做到这一点?
谢谢
尝试使用Replace()函数,示例
Replace()
UPDATE tableName SET colName = Replace(colName, 'a', 'b')
顺便说一句,replace是区分大小写的。
replace