รายละเอียดของการตอบ ::
พอนี้มันขึ้นแบบนี้อะครับ [Err] 1248 - Every derived table must have its own alias
ผมจึงเติม
select * from(
select * from stock where status="ขาย" group by stock_code
union all
select * from stock where status="" and stock_code not in(select * from stock where status="ขาย" group by stock_code)
as a group by stock_code
)
กลายเป็น
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as a group by stock_code
)' at line 4
ลองปรับเป็น
select * from(
select * from stock where status="ขาย" group by stock_code
union all
select * from stock where status="" and stock_code not in(select
stock_code from stock where status="ขาย" group by stock_code)
as a group by stock_code
)
ก็แล้วยัง Error แบบเดิมอยู่ควรแก้ไขอย่างไรดีครับ
ขอบคุณมากๆครับผม