SELECT * , date_format(scan_date,'%d-%m-%Y') as newscan_date FROM time t , employees e
WHERE t.em_id = e.em_id and t.em_id='10001'
and t.date >= '2010-03-05'and t.scan_date <= '2010-03-31'
order by t.date;
ข้อมูลของวันที่ซ้ำกัน เอาข้อมูล Record แรกและ Record สุดท้ายมาแสดงยังไงค่ะมาแสดงยังไง
05/03/2010 17:13
05/03/2010 14:02
06/03/2010 08:00
06/03/2010 11:32
Tag : - - - -
Date :
2010-06-09 15:35:03
By :
nana
View :
873
Reply :
1
No. 1
Guest
Code
SELECT reply.topic_id,reply.reply_poster,reply.reply_date,reply.reply_ip,reply.reply_id
FROM reply,
(SELECT max(reply_id) as maxid,topic_id
FROM reply
GROUP BY topic_id) maxresults
WHERE reply.topic_id = maxresults.topic_id
AND reply.reply_id= maxresults.maxid"