I have written sql query
Select * from Products WHERE Products.Category=="Fruits";
the returned answer is
1-Banana
2-Mango
3-Apple
4-Oranges
5-Grapes
now i want to select fruit at index 3rd only that is Apple using sql indexes the problem arises every where how should i select the element at 3rd place using its index in sql query?