반응형
한 테이블에서 배열을 검색하려고합니다.이 코드에 어떤 문제가 있습니까?
$_fbexclude = mysql_query("SELECT fbempfang FROM fbinvite WHERE fbreturn = '1' ");
$fbexcludearray= mysql_fetch_array($_fbexclude);
// Convert the array
$excludes = implode(',', $fbexcludearray);
echo $ excludes;
에서 다음 응답 만 제공합니다. 1000033xxx161,1000033xxx161
동일한 fbempfang의 두 배
해결 방법
다음이 원하는 내용을 제공하는지 확인하세요 ( 해결됨 ).
$_fbexclude = mysql_query("SELECT fbempfang FROM fbinvite WHERE fbreturn = '1'");
$fbexcludearray = array();
while ($row = mysql_fetch_assoc($_fbexclude)) {
$fbexcludearray[] = $row['fbempfang'];
}
// Convert the array
$excludes = implode(',', $fbexcludearray);
참조 페이지 https://stackoverflow.com/questions/8866617
반응형
'MySql' 카테고리의 다른 글
MySQL 복합 기본 키를 추가하는 ALTER TABLE (0) | 2020.09.23 |
---|---|
MySQL에 순차 번호 삽입 (0) | 2020.09.23 |
MySQL Copy one column from one database to another (0) | 2020.09.23 |
MySQL에서 테이블을 삭제하면 인덱스도 삭제됩니까? (0) | 2020.09.23 |
MySQL 내 데이터베이스에서 실행중인 모든 MySQL 이벤트를 보려면 어떻게해야합니까? (0) | 2020.09.22 |
댓글