sql >> データベース >  >> RDS >> Mysql

PHP:MySQLの結果を多次元配列に並べ替える

    $values = array(); //base array
    while ($line = mysql_fetch_assoc($front_end_query_result)){ //fetch the rows
        //in the base array create a new array under 'name'
        $values[$line['name']] = array(); 
        //for each item in the result set, add it to the new array
        foreach ($line as $key => $value) {
            $values[$line['name']][$key] = $value;
        }
    }
    



    1. djangoをインストールせずにdjangoプロジェクトを実行する

    2. GROUP_CONCATを入力としてSELECTWHEREIN

    3. jdbcを介して実行されるストアドプロシージャ

    4. 複数のテーブルから詳細を取得する方法は?