Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Zmienne MySql i php

W PHP możesz mieć tylko jedno zapytanie na raz.

 $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";

AKTUALIZUJ

Mam DAL, który zawiera wszystkie moje zapytania. Typowa funkcja w moim DAL wygląda tak:

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

Następnie w moim BLL (warstwa biznesowa) mam następujące elementy:

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


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Suma kilku kolumn MySQL przechowywanych w innej kolumnie?

  2. dlaczego dzielimy tabelę mysql na wiele mniejszych?

  3. mysql recursive(drzewo) kategoria rodzic-dziecko

  4. Jak zmienić kolejność klucza podstawowego?

  5. Dodaj przycisk Usuń do tabeli wyników PHP