From: "Jason Wong" <[EMAIL PROTECTED]>
> select * from table where price > 0 AND price < 50;

SELECT * FROM table WHERE price BETWEEN 0 AND 50;

Same thing, easier to read (assuming MySQL, don't know if it works on
others).

---John Holmes...


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

Reply via email to