|
|
|
สอบถามการนับข้อมูลใน Field ที่ซ้ำกันใน Table เดียวกัน |
|
|
|
|
|
|
|
Code (SQL)
select
count(id)
from tablename
group by name
|
|
|
|
|
Date :
2017-08-31 08:32:33 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$Do="SELECT distinct Job_id,
Field_1,
Field_2,
Field_3
FROM tb_test";
$Dothat =mysql_query($Do) or die("Show error SELECT :: ".mysql_error());
<table>
<tr>
<td>Job_id</td>
<td>Field_1</td>
<td>Field_2</td>
<td>Field_3</td>
</tr>
<tr>
<?php
while($row=mysql_fetch_array($Dothat))
{
?>
<td><?php echo ["Job_id"]; ?></td>
<td><?php echo ["Field_1"]; ?></td>
<td><?php echo ["Field_2"]; ?></td>
<td><?php echo ["Field_3"]; ?></td>
</tr>
<?php } ?>
</table>
SQL SUM ไปลองเล่นดู :: https://www.w3schools.com/sql/sql_count_avg_sum.asp
|
|
|
|
|
Date :
2017-08-31 08:38:36 |
By :
Bouasavanh HararRock |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทั้ง 2 ท่านเลยครับ
คืนนี้จะลองดูครับ
|
|
|
|
|
Date :
2017-08-31 11:27:47 |
By :
Thicha Praditthong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|