选择具有撇号值 postgresql 的行
我想选择具有撇号值的行 postgresql:
select * from table where column like '%'||chr(39)||'%'
但它不起作用。
表buku
:
id new_issn
------------- --------
1.003.111.641 ''
1.003.111.642 ''
1.003.111.643 125698
select * from buku where new_issn like '%'||chr(39)||'%'
I want to select rows which has apostrophe value postgresql:
select * from table where column like '%'||chr(39)||'%'
But it doesn't work.
Table buku
:
id new_issn
------------- --------
1.003.111.641 ''
1.003.111.642 ''
1.003.111.643 125698
select * from buku where new_issn like '%'||chr(39)||'%'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个撇号可以用另一个撇号转义。试试这个:
参考:Postgresql 文档。
An apostrophe can be escaped with another apostrophe. Try this:
Reference: Postgresql docs.