M
Mario Krsnic
Hello everybody!
How can I select rs with times criteria. I would like to sort only night
times (21:00 - 06:00). I tried so:
vr1=21:00
vr2=06:00
SELECT * FROM table WHERE timevalue(datum) between (vr1) and (vr2)
This query is too broad - I get daily times too.
And this query gives me no rs:
SELECT * FROM table WHERE timevalue(datum) > (vr1) and
timevalue(datum)<(vr2)
What should I do?
Mario
How can I select rs with times criteria. I would like to sort only night
times (21:00 - 06:00). I tried so:
vr1=21:00
vr2=06:00
SELECT * FROM table WHERE timevalue(datum) between (vr1) and (vr2)
This query is too broad - I get daily times too.
And this query gives me no rs:
SELECT * FROM table WHERE timevalue(datum) > (vr1) and
timevalue(datum)<(vr2)
What should I do?
Mario