标签: sql oracle oracle11g
表中的列具有格式为lastName,firstname的值。一些lastNames有特殊字符。例如,
Full_Name Gössel,Robert Ocaña,Jack.
选择查询
select * from tblx where fullname = 'Gössel,Robert';
返回null。
如何处理数据库中的特殊字符?我正在使用oracle 11g。
谢谢!