How to Execute Multiple SQL Queries in a Single Result Set with PHP/MySQL?

Linda Hamilton
Release: 2024-11-11 15:37:03
Original
475 people have browsed it

How to Execute Multiple SQL Queries in a Single Result Set with PHP/MySQL?

Executing Multiple Queries in PHP/MySQL

Question:

How can I combine multiple SQL queries into a single result set in PHP using MySQL?

Answer:

To execute multiple concatenated queries in PHP using MySQL, follow these steps:

  1. Create the SQL Statement:
    Concatenate the individual SQL queries into a single string, separated by semicolons (;). Ensure there are two semicolons at the end of each query except the last one.
  2. Connect to Database:
    Use the mysqli_connect function to establish a database connection.
  3. Prepare Query:
    Use the mysqli_prepare function to prepare the multiple-query statement.
$query = "SQL STATEMENT 1;;SQL STATEMENT 2;;SQL STATEMENT 3";
Copy after login
  1. Execute Queries:
    Use the mysqli_multi_query function to execute the prepared statement.
if (mysqli_multi_query($link, $query)) {
    do {
        // Store and process results
    } while (mysqli_next_result($link));
}
Copy after login
  1. Fetch Results:
    After executing the queries, use the mysqli_fetch_array to retrieve results from each query.

Example:

$link = mysqli_connect("server", "user", "password", "database");

$query = "CREATE VIEW current_rankings AS SELECT * FROM main_table WHERE date = X;;
CREATE VIEW previous_rankings AS SELECT rank FROM main_table WHERE date = date_sub('X', INTERVAL 1 MONTH);;
CREATE VIEW final_output AS SELECT current_rankings.player, current_rankings.rank as current_rank LEFT JOIN previous_rankings.rank as prev_rank
             ON (current_rankings.player = previous_rankings.player);;
SELECT *, @rank_change = prev_rank - current_rank as rank_change from final_output";

if (mysqli_multi_query($link, $query)) {
    do {
        if ($result = mysqli_store_result($link)) {
            while ($row = mysqli_fetch_array($result)) {
                // Process results
            }
            mysqli_free_result($result);
        }
    } while (mysqli_next_result($link));
}
Copy after login

Alternative Approach:

Alternatively, you can execute each query separately and process the results one by one. This approach is recommended if the queries are not interdependent.

$query1 = "Create temporary table A select c1 from t1";
$result1 = mysqli_query($link, $query1);

$query2 = "select c1 from A";
$result2 = mysqli_query($link, $query2);

while($row = mysqli_fetch_array($result2)) {
    // Process results
}
Copy after login

The above is the detailed content of How to Execute Multiple SQL Queries in a Single Result Set with PHP/MySQL?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template