How To Select All Value From A Column In A Particular Range?

hello friends…

how to select all value from 3000 to 5000 from a column in a table from database?

please give me some suggestion…

thanks.

If You want SQL statement, it is:


SELECT * FROM table WHERE (var BETWEEN value1 AND value2)

thanks mirunho…