If i have 2 queries like this
$query1 = "SELECT title, content, image FROM table1 WHERE id = :id";
$query2 = "SELECT title, content FROM table2 WHERE id = :id";
Can i prepare two of them at once like something like this
$stmt = $conn->prepare($query1, $query2);
$stmt->execute([':id' => $id]);