यह लिंक देखें:http://sqlfiddle.com/#!2/54a5e/12 ए>
select t.id,t.cDate,t.cTrans
,(case when @pID=t.id then @pTran else 0 end) as preT
,(@pID :=t.id) as `tID`,(@pTran := t.cTrans) as `tTrans`
from tb_test_1 as t,(select @pID = 0, @pTran = 0) as t2
order by id,cDate;
tID
और tTrans
कॉलम को बरकरार रखा जाना चाहिए, और पेज पर प्रदर्शित नहीं किया जा सकता है।
कृपया मुझे क्षमा करें क्योंकि मुझे केवल थोड़ी सी अंग्रेजी आती है!