Hi Guys,
Please would you be able to help me with this one. I have the below query
SELECT SURNAME, INITIALS, RELATIONSHIP_TO_HH, MEMBER_TYPE FROM SOUT.MEMBERS
WHERE SURVEY_ID = '1000000040' AND MEMBER_TYPE NOT IN ('1','2')
which returns the below

How can I write a query that will only display the second row and not the first. The thing is that I have to display 2 family members in a form that are on two separate lines and sometimes there are more then two member as above
So i was thinking to use the above select to get the first row
Then I would use another select to skip the first row and only display the second row.
Please advise. Thank you kindly