I wonder is it possible to use the $get value in several places in a query?
The $value is originally a timestamp that is used like this:
ho.time BETWEEN ? AND ?
I want to add the value to another column, but is this possible?
ho.send BETWEEN ? AND ?
I tried:
ho.time,ho.send BETWEEN ? AND ?(ho.time,ho.send) BETWEEN ? AND ?ho.time BETWEEN ? AND ?ho.send BETWEEN ? AND ?
But don't get it to work with more than one.