mysql 去除单引号
时间: 2023-11-09 15:03:44 浏览: 81
powerdesigner中去掉生成sql中的引号
5星 · 资源好评率100%
如果要在 MySQL 中去除单引号,可以使用 REPLACE 函数。例如,将字符串中的单引号替换为空字符串:
```
SELECT REPLACE('I\'m a string with \'single quotes\'', '\'','');
```
输出结果为:
```
Im a string with single quotes
```
阅读全文