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

Wyniki łączenia SQL w obiekt w codeigniter

// first, we need the SQL results in the $result_array variable
$sql = 'SELECT ...';  // your SQL command
$result_array = $this->db->query($sql)->result_array();  // codeigniter code

// here the real answer begins
$result = array();

foreach ($result_array as $row)
{
    if (!isset($result[$row['authorid']])
    {
        $author = new StdClass();
        $author->authorid = $row['authorid'];
        $author->authorname = $row['authorname'];
        $author->books = array($row['books']);
        $author->favorited = array($row['favorited']);
        $result[$row['authorid']] = $author;
    }
    else
    {
        if (!in_array($row['books'], $result[$row['authorid']]->books))
        {
            $result[$row['authorid']]->books[] = $row['books'];
        }
        if (!in_array($row['favorited'], $result[$row['authorid']]->favorited))
        {
            $result[$row['authorid']]->favorited[] = $row['favorited'];
        }
    }
}

$result = array_values($result);
echo json_encode($result);



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Ograniczasz lewe sprzężenie do zwrócenia jednego wyniku?

  2. Jak ustawić zmienne środowiskowe dla Laravel 5 na AWS EC2 z MySQL?

  3. Jak mogę dokonać porównania ciągów znaków SQL z uwzględnieniem wielkości liter w MySQL?

  4. Awaria MySQL podczas uruchamiania

  5. Jak przechowywać Unicode w MySQL?