I would like to return the second row of a result set to compare against. I am currently using TOP 1 but I do not want that row that is returned.
Here is my code.
select * from uTable where sField = (select TOP 1 sField from utable where sAccount = '12345')
I would like to get the second row it returns and not the first. Is there a bottom command? Thanks,
Dan
Here is my code.
select * from uTable where sField = (select TOP 1 sField from utable where sAccount = '12345')
I would like to get the second row it returns and not the first. Is there a bottom command? Thanks,
Dan