johnlemon
johnlemon

Reputation: 21489

Postgresql Serialize

Is it possible to search a field that was serialized in php and stored like that in postgresql ?

Upvotes: 0

Views: 375

Answers (1)

Alex Howansky
Alex Howansky

Reputation: 53591

You can use the regexp match, but it won't be fast:

select * from table where field ~* 'sometext';

Upvotes: 1

Related Questions