Hello,
I'm working in c# asp.net and oracle as database. I am binding 10 records in my Dataset ds order by Created_Date desc.
I wanto skip first record to get bind to Dataset ds. How to do it ?
If possible if I can handle it Proc, it is also fine.
My Proc :
Select * from Table T1 where CoverNote = '123456' order by Created_Date desc;
Thank You in advance !