|
|
|
ต้องการ เงื่อนไขในดึงข้อมูลมาเเสดงครับ ดึงมาเฉพาะข้อมูลที่ อัพเดทล่าสุด ครับ |
|
|
|
|
|
|
|
แนวคิด
table A
pid name
101 แก้มหมู
102 ขาหมู
table B
id pid startDate endDate price editdate insertDate
1 101 15-03-2013 20-03-2013 500 null 15-03-2013
ตอนดึงข้อมูล
select * from table B where editdate is null
ตอนทำราคาใหม่
update table B set editdate=getdate() where editdate is null and pid=pid
จากนั้นค่อย Insert ข้อมูล ลง table B
insert into table B(id,pid,startDate,endDate,price,insertDate) values(.....)
ลองดูครับ
|
|
|
|
|
Date :
2013-03-15 09:43:58 |
By :
thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|