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 ? Link to comment https://forums.phpfreaks.com/topic/82458-solved-select-from-a-specific-row/ 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; Link to comment https://forums.phpfreaks.com/topic/82458-solved-select-from-a-specific-row/#findComment-419230 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~ !!!! Link to comment https://forums.phpfreaks.com/topic/82458-solved-select-from-a-specific-row/#findComment-419231 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.