在写SQL语句时常遇到查找字符串中带单双引号的时候
比如:
1, select *from `products` where 'name' =' Global Teléfono ' 5g'
2, select *from `products` where 'name' ="Global Teléfono " 5g"
可以写成
1, select *from `products` where 'name' =' Global Teléfono ''5g'
2, select *from `products` where 'name' =“Global Teléfono " " 5g”
希望可以帮到您!如果经验有问题欢迎讨论