asmith Posted December 20, 2007 Share Posted December 20, 2007 can i select values in a column in a table from row 3 to end ? example : table : row fruit 1 apple 2 orange 3 banana 4 carrot 5 peach i want to select the fruit column from row 3 to end . which would return " banana, carrot, peach" . is that possible ? Quote Link to comment Share on other sites More sharing options...
~n[EO]n~ Posted December 20, 2007 Share Posted December 20, 2007 something like this SELECT * FROM `tablename` WHERE row > 2; Quote Link to comment Share on other sites More sharing options...
asmith Posted December 20, 2007 Author Share Posted December 20, 2007 awww too much easy! thanks a bunch ,~n[EO]n~ !!!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.