728x90
반응형
■ php Mysql 여러 쿼리 한번에 실행하기 mysqli_multi_query()
■ 설명
: 쿼리와 쿼리 사이에 세미콜론(;) 으로 구분한 하나 이상의 쿼리문을 한번에 실행할 수 있음
■ 사용법
mysqli_multi_query(connectDB,query)
$con = mysqli_connect("localhost","myuser","mypassword","mydb");
$multi_query = "
쿼리1 ;
쿼리2 ;
쿼리3 ;
";
if( mysqli_multi_query($con, $multi_query) ){
do {
// store first result set
if ($result = mysqli_store_result($con)) {
// fetch one and one row
while ($row = mysqli_fetch_row($result)) {
//printf("%s\n",$row[0]);
}
// free result set
mysqli_free_result($result);
}
} while (mysqli_more_results($con) && mysqli_next_result($con));
}
728x90
반응형
'PHP' 카테고리의 다른 글
[PHP] 소수점 표현 ceil , floor , round , number_format (0) | 2021.01.12 |
---|---|
[PHP] 배열 자르기 array_slice() (2) | 2021.01.11 |
[PHP] 특정값이 배열 안에 존재하는지 확인 (배열 내 특정 값 체크, in_array) (0) | 2020.12.29 |
[PHP] 페이지 에러 내용 상세 출력 (0) | 2020.12.29 |
[PHP] PHP Mailer SMTP 메일 발송 (0) | 2020.12.23 |