Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Variáveis ​​MySQL e php


Você só pode ter uma consulta por vez no PHP.
 $query1 = "SELECT count(*) FROM agents INTO @AgentCount"
 $query2="  
  SELECT user_agent_parsed, user_agent_original, COUNT( user_agent_parsed ) AS thecount, 
  COUNT( * ) / ( @AgentCount) AS percentage
  FROM agents
  GROUP BY user_agent_parsed
  ORDER BY thecount DESC LIMIT 50";

ATUALIZAÇÃO

Eu tenho um DAL que contém todas as minhas consultas. Uma função típica no meu DAL se parece com isso:
// These functions are reusable 
  public function getAllRows($table)
  {
    $sql =" SELECT * FROM $table";
    $this->query($sql);
    return $this->query_result;       
  }

Então na minha BLL (Business Layer) tenho o seguinte:
  public function getUserAgents()
  {
      $result = parent::getAllRows();
      $row = mysql_fetch_array($result);
      return $row[0]; // Retrieves the first row

      // Then you take this value and to a second request. Then return the answer / rows.
  }