我正在尝试创建一个可以接收大量参数的查询(30 - 35),它们都会像from / to
一样:
select * from sales where sale_date > date_from and sale_date < date_to;
最好的办法是什么?
答案 0 :(得分:2)
您可以使用表达式
缩短查询select * from sales where sale_date between date_from and date_to;
如果您想在代码中执行此操作,可以使用Criteria API