我在 postgresql 9.1 版中有一个带有两个撇号的行单元格值,如下所示:
col1 col2
'' 1
'' 2
aa 3
aa 4
现在我想从 col1 中选择那些带有 '' 的行
我试过了:
select * from table1 where col1 like '''''%'
但什么也不返回。
select * from table1 where col1 = ''''''
但什么也不返回。
select * from table1 where col1 = $$''''$$
但也一无所获。
select * from table1 where col1 like $$''%$$
但也一无所获。
有人可以帮忙吗?谢谢