2021
02-02
02-02
postgresql 实现字符串分割字段转列表查询
在数据查询中,有一张a表存有另一张b表的id并以‘,'隔开如:假设现在要关联查询关于b表的一些信息,怎么办。分割查询:字符串转列表函数:regexp_split_to_table()select*fromregexp_split_to_table((selectproduct_idsfromfee_project_mealwhereid=116199376233182210),',')查询后,字符串就变成了列表,然后你就可以根据这个列表去找b表的相关信息了。select*frompm.productwhereid::textin(select*from...
继续阅读 >