I have a table and I want to get the row before the last one. Eg
KeyboardID KeyboardName
1 "DELL"
2 "HP"
3 "Viewsonic"
4 "Samsung"
select max(keyboardid) from keyboard -> will get the Samsung
My Question is how to get the Viewsonic Keyboard...