开发者

Postgresql Serialize

开发者 https://www.devze.com 2023-01-18 12:36 出处:网络
Is it possible to search a field that was serialized in php and开发者_如何学Go stored like that in postgresql ?You can use the regexp match, but it won\'t be fast:

Is it possible to search a field that was serialized in php and开发者_如何学Go stored like that in postgresql ?


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

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

精彩评论

暂无评论...
验证码 换一张
取 消