ต้องการ Select ข้อมูลแบบนี้นะค่ะ ช่วยหน่อยนะค่ะ ต้องการให้ผลลัพธ์ออกมาเป็น ID INO Number Conclution 2 101 2
select * From Table T
where Conclution = 'คืนงาน'
and INO in (101,102)
Date :
2009-06-23 17:14:55
By :
ทางผ่าน
ไม่ทราบต้องการเอาแค่ Conclution = คืนงาน รึป่าวถ้าเช่นก็ประมาณนี้
select ID, INO, Number, Conclution
from tablename
where Conclution = 'คืนงาน'
Date :
2009-06-23 17:15:11
By :
besttooo
อันที่จิงข้อมูลมีเป็นร้อย ๆ เลยนะค่ะ
นี้เป็นแค่ตัวอย่าง ถ้าจะให้ใช้ INO in (101,102)
เห็นที่จะยาก แต่ก็ขอบคุณสำหรับคำตอบนะค่ะ
Date :
2009-06-23 17:26:06
By :
jip_is
คือต้องรู้ก่อนอะคับว่าจะเอาอะไรเป็นหลัก ถ้าจะเอาแค่ คืนงาน ออกมา ก็ไม่ต้องมี in อะคับผม แค่นี้เราก็จะได้ คืนงานออกมาทั้งหมดอะคับ
Date :
2009-06-23 17:28:15
By :
ทางผ่าน
ค่าNumber ต้องเป็นค่าที่มากที่สุดของแต่ละ INO ด้วยนะค่ะ
Date :
2009-06-23 17:31:06
By :
jip_is
select max(number),INO, Conclution
where Conclution = 'คืนงาน'
Group by INO,Conclution
Date :
2009-06-23 17:33:14
By :
ทางผ่าน
select max(number),INO, Conclution From Tabel
where Conclution = 'คืนงาน'
Group by INO,Conclution
* ลืม From
Date :
2009-06-23 17:34:52
By :
ทางผ่าน
ขอบคุณค่ะ
Date :
2009-06-25 09:17:06
By :
jip_is
ASP.NET Report Maker ครับ ผมใช้บ่อย ไม่ต้องเขยนโคดที่ซับซ้อนเอง
Date :
2009-07-22 02:32:23
By :
asptuy
select a.ID ,a.INO ,a.Number, a.Conclution
from table1 a
inner join (select ino,max(number) as number from table1 group by ino) b
on a.ino = b.ino and a.number = b.number
เท่านี้ก็เรียบร้อยครับ
Date :
2009-07-22 07:36:13
By :
taobsd
โปรแกรมเมอร์ส่วนใหญ่ ไม่ใช้ Select * ถึงแม้ว่าจะใช้หมดก็ตามเพื่อฝึกเป็นสิสัย
เอามาเฉพาะที่ใช้เท่านั้น
----------------------- งึ่มๆ ----------------------------
Select id, ino, Number,conclution
from tbl_xxxxx
where Conclution = 'คืนงาน'
Order by id
เอาด้วยๆ ขำๆ
Date :
2009-07-23 17:14:08
By :
Joe_Dev
Load balance : Server 01