|
|
|
วิธีรวมค่าที่มันเหมือนกันเป็นตารางเดียวยังไงครับ |
|
|
|
|
|
|
|
Code (SQL)
select item,sum(qty) as total_qty from table1
group by item
|
|
|
|
|
Date :
2015-08-28 10:53:06 |
By :
itoffside.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (SQL)
select id, name, sum(qty) from (
select id, name, qty from tb1
union all
select xid, xname, xqty from tb2
) as tmp group by id
|
|
|
|
|
Date :
2015-08-28 10:55:38 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
แต่สงสัยผมคงถามไม่เคลียเองละครับ T T
|
|
|
|
|
Date :
2015-08-28 13:15:53 |
By :
mhbank |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|