2013-09-29 31 views

回答

2

一個可行的解決方案,但將是非常慢對於較大的表和陣列到UNNEST陣列和使用ILIKE(或任何其他情況下不敏感的比較):

select * 
from (
    select id, unnest(email) email_address 
    from user 
) t 
where email_address ILIKE '[email protected]' 
相關問題