Mysql
 sql >> Base de données >  >> RDS >> Mysql

Variables MySQL et PHP

Vous ne pouvez avoir qu'une requête à la fois en 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";

MISE À JOUR

J'ai un DAL qui contient toutes mes requêtes. Une fonction typique dans mon DAL ressemble à ceci :

// These functions are reusable 
  public function getAllRows($table)
  {
    $sql =" SELECT * FROM $table";
    $this->query($sql);
    return $this->query_result;       
  }

Ensuite dans mon BLL (Business Layer) j'ai ceci :

  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.
  }