I want to retrive only a row from a N row result of a SQL query. For example:
Set rs = conn.Execute("SELECT ..... ")
strResult = rs.Fields(0)
Query result:
30
45
70
....
How can i use the second value (20) from this query for example? Either by VBA or altering the sql query. I'm using SQL server. There are the "LIMIT" or "TOP" commands but they are for a different purpose.