0
내가이를 변환 할 WHERE 변환하는 방법 :IN의 정규식에 여러 값을 가진 절 또는처럼
이 같은 것으로SELECT id,songTitle,artistName, trackId
FROM songs
WHERE (songTitle, artistName) IN (('come together', 'the beatles'),('all the small things', 'blink-182'))
하지만 올바른 구문을 모르는 :
SELECT id,songTitle,artistName, trackId
FROM songs
WHERE (songTitle, artistName) IN LIKE (('%come together%', '%the beatles%'),('%all the small things%', '%blink-182%'))
을 단 한 번에 100 곡을 추가로 검색하고 있습니다. 우리는 REGEXP도 사용할 수 있습니다. 그 중 하나에 대한 올바른 구문을 모릅니다.