Is it possible to search a field that was serialized in php and stored like that in postgresql ?
+1
A:
You can use the regexp match, but it won't be fast:
select * from table where field ~* 'sometext';
Alex Howansky
2010-10-04 15:57:30