Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Kelompokkan hasil mysql dalam kelompok empat

Anda dapat menggunakan modulus-operator untuk mengelompokkan baris Anda menjadi 4 grup, seperti ini:

$i=0;
while($row = ...) {
    if($i%4 == 0) { // % = modulus operator. This returns the remainder of a division, so 1%4 = 1 (because it's 0+1/4), while 5%4 also returns 2 (5%4 = 1+1/4)
       if($i > 0) {
          echo '</div>';
       }
       echo '<div>';
   }
   echo $row;
   $i++;
}
echo '</div>';

Ini akan mengelompokkan hasil Anda dalam set 4 seperti:<div>row 1 row 2 row 3 row 4</div><div>row 5 row 6 row 7 row 8</div> dll.




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Cara mengaktifkan INNODB di mysql

  2. Variabel array di mysql

  3. Apakah join insert/update di MySQL merupakan operasi atom?

  4. Menggunakan % untuk host saat membuat pengguna MySQL

  5. Masalah pengalihan halaman Node-js