一页中的两个不同的SQL查询

时间:2016-05-06 10:17:06

标签: php mysql

我试图在一个页面中执行两个查询。这些结果应该是分开的。

我的代码就像:

$artistList_sql = "CALL artistListele()";
$artistList_result = $mysqli->query($artistList_sql);

if($artistList_result->num_rows > 0){
  while($sanatci = $artistList_result->fetch_assoc()){
    /* bla bla */
  }
}

$catList_sql = "CALL kategoriListele()";
$catList_result = $mysqli->query($catList_sql);

if ($catList_result->num_rows > 0) {
  while($row = $catList_result->fetch_assoc()) {
    /* bla bla */
  }
}

但是,它不起作用。第一个运行完美,第二个运行无效。可能是什么问题?

0 个答案:

没有答案