PDO를 사용하여 값 배열을 MySQL IN 문에 바인딩할 때 기본 동작은 바인딩된 값을 다음과 같이 처리하는 것입니다. 원하는 개별 요소가 아닌 배열의 모든 요소를 포함하는 단일 문자열
이 문제를 해결하는 데는 여러 가지 접근 방식이 있습니다.
1. 직접 문자열 구성:
* Construct the IN clause within the query string, directly including the values instead of binding them. This method avoids the binding issue but requires hard-coding the values in the query.
2. find_in_set 함수:
* Utilize the find_in_set function to search for values in a comma-separated string. Modify the query as follows: ``` SELECT users.id FROM users JOIN products ON products.user_id = users.id WHERE find_in_set(cast(products.id as char), :products) ``` Note that this approach may impact performance for large datasets.
3. 사용자 정의 함수:
* Create a user-defined function that splits the comma-separated values. This function can be used in the IN clause to convert the string to individual values.
이 마지막 접근 방식은 일반화된 솔루션을 제공하므로 IN 절에 자주 의존하는 쿼리에 권장됩니다.
위 내용은 PDO를 사용하여 배열 값을 MySQL IN 문에 올바르게 바인딩하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!