My Mysql table has the following fields:
id;
num_min;
num_max;
The user will enter a number and need to verify that this number is in the interval between the num_min and num_max column of the table.
I tried with between but it did not work!
Is it possible to do this directly using a mysql query or does it have to be done via php?