 |
การแสดงผล ตามเงื่อนไขแบบนี้ ต้องเขียนโค้ดอย่างไรครับ |
|
 |
|
|
 |
 |
|
Code (SQL)
select * from (
select m.id, m.name, sum( coalesce(s.amt,0)) as amount, sum(coalesce(s.qty, 0)) as quatity
from table_stock_name as m
left join tb_sale as s
on s.id = m.id and s.sale_date between x_first_date and x_last_date
group by m.id
) as t
order by t.amount desc
|
ประวัติการแก้ไข 2020-07-24 15:48:00 2020-07-24 15:49:55 2020-07-24 15:52:57
 |
 |
 |
 |
Date :
2020-07-24 15:47:21 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ถ้าไม่มี field qty คือรายการละ 1 ก็แค่เปลี่ยน function เอา ก็ทำได้อยู่ไม่ใช่เหรอครับ วิเคราะห์เอาหน่อย ไม่ยากหรอกมั้ง
|
 |
 |
 |
 |
Date :
2020-07-24 20:51:06 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณทีชี้แนะครับ ทำได้แล้วครับ
|
 |
 |
 |
 |
Date :
2020-07-25 09:51:47 |
By :
estefania |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|