On Friday 28 June 2002 19:15, Bård Tommy Nilsen wrote:
> I want to search within a result from a query

Did you really mean that, or did you mean you want a query which returns 
results within ...

> A specific range (price)

? If the latter then ...

> For example.
>
>
> I want to display only the articles that cost between 0-50>

select * from table where price > 0 AND price < 50;

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
Barach's Rule:
        An alcoholic is a person who drinks more than his own physician.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to