i have a simple query like this
select * from user where xxx between a and b
but how if i have multiple input, like xxx, yyy, mmm, bbb.
with same sintax,
select * from user where xxx,yyy,mmm,bbb between a and b
i want select all user that a and b is beetween xxx,yyy,mmm and bbb. so it will return all user that a and b is match with between creteria.
Thanks