sql 某一逗号拼接的字段关联另一张表所有的匹配的记录

pgsql/mysql 某一逗号拼接的字段关联另一张表所有的匹配的记录

--#mysql中的写法:
select * from files f,users u
where u.id= f.Id
and FIND_IN_SET(‘7’, ‘1,3,5,7’)
--#在pgsql中的写法:
select * from  files f left join users u ON u.id = f.id where
u.column = ANY (string_to_array(f.column,’,’)) 

你可能感兴趣的:(sql,数据库)