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

カテゴリに基づいて結果をループしますが、カテゴリは1回だけ表示します

    すでに結果を製品ごとに注文しているので、次のようにすることができます:

    $currentProduct = null;
    
    foreach($products as $product) {
    
        if ($currentProduct != $product['product']) {
            // We got a new product. Show it with some fancy html
            // Then store it in $currentProduct for the next iteration 
            $currentProduct = $product['product'];
        }
    
        // Show the title with some fancy html
    }
    

    既存のdo whileを使用する場合 -代わりにループします。同じです。




    1. WordPressリンクはすべてダブルURLにリダイレクトされます

    2. IllegalStateException:データベースはすでに閉じられています(ViewPagerを使用)

    3. Railsを既存のデータベースの上に置く

    4. Laravel移行テーブルはすでに存在しますが、古いものではなく新しいものを追加したい