4
select * 
from folder f,uploads u 
where u.id=f.folderId 
and FIND_IN_SET('8', '15,9,13,27')

事前定義またはユーザー定義のpostgresql関数に相当するものを教えてください

4

3 に答える 3

0
    select * 
       from folder f,uploads u 
          where u.id=f.folderId and '8' in('15','9','13','27')
于 2016-02-03T07:00:52.547 に答える