Silverslide Posted April 20, 2006 Share Posted April 20, 2006 I want the query to only select the item with id 1 till 10how do i do thatSELECT * FROM news WHERE id='....' ?please help me Quote Link to comment Share on other sites More sharing options...
sanfly Posted April 20, 2006 Share Posted April 20, 2006 [!--quoteo(post=366986:date=Apr 21 2006, 08:10 AM:name=Silverslide)--][div class=\'quotetop\']QUOTE(Silverslide @ Apr 21 2006, 08:10 AM) [snapback]366986[/snapback][/div][div class=\'quotemain\'][!--quotec--]I want the query to only select the item with id 1 till 10how do i do thatSELECT * FROM news WHERE id='....' ?please help me[/quote]Maybe...SELECT * FROM news WHERE id >= '1' AND id <= '10'or to make it more dynamic$min = 1;$max = 10;SELECT * FROM news WHERE id >= '$min' AND id <= '$max' 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.