mysqli_multi_query
    (PHP 5)
mysqli_multi_query
    (no version information, might be only in CVS)
mysqli->multi_query -- データベース上でクエリを実行する
返り値
     最初のステートメントが失敗した場合にのみ、
     mysqli_multi_query() は FALSE を返します。
     その他のステートメントのエラーを取得するには、まず
     mysqli_next_result() をコールする必要があります。
    
例
例 1. オブジェクト指向型 
<?php $mysqli = new mysqli("localhost", "my_user", "my_password", "world");
  /* 接続状況をチェックします */ if (mysqli_connect_errno()) {     printf("Connect failed: %s\n", mysqli_connect_error());     exit(); }
  $query  = "SELECT CURRENT_USER();"; $query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";
  /* execute multi query */ if ($mysqli->multi_query($query)) {     do {         /* 最初の結果セットを格納します */         if ($result = $mysqli->store_result()) {             while ($row = $result->fetch_row()) {                 printf("%s\n", $row[0]);             }             $result->close();         }         /* 区切り線を表示します */         if ($mysqli->more_results()) {             printf("-----------------\n");         }     } while ($mysqli->next_result()); }
  /* 接続を閉じます */ $mysqli->close(); ?>
 |  
  | 
例 2. 手続き型 
<?php $link = mysqli_connect("localhost", "my_user", "my_password", "world");
  /* 接続状況をチェックします */ if (mysqli_connect_errno()) {     printf("Connect failed: %s\n", mysqli_connect_error());     exit(); }
  $query  = "SELECT CURRENT_USER();"; $query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";
  /* execute multi query */ if (mysqli_multi_query($link, $query)) {     do {         /* 最初の結果セットを格納します */         if ($result = mysqli_store_result($link)) {             while ($row = mysqli_fetch_row($result)) {                 printf("%s\n", $row[0]);             }             mysqli_free_result($result);         }         /* 区切り線を表示します */         if (mysqli_more_results($link)) {             printf("-----------------\n");         }     } while (mysqli_next_result($link)); }
  /* 接続を閉じます */ mysqli_close($link); ?>
 |  
  | 
上の例の出力は以下となります。
my_user@localhost
-----------------
Amersfoort
Maastricht
Dordrecht
Leiden
Haarlemmermeer  |