首页
App
&
Coffee
文档
项目
分享
反馈
俱乐部
登录
注册
请问sql文件优化的问题
YLu
2018-05-21 11:06
sql文件中许多sql用到了相同的查询条件,这个可以把这些查询条件提取出来么
项目:
JFinal
评论区
JFinal
2018-05-21 11:11
如果你用的是 jfinal 的 sql 管理功能,那么就极其容易:
#define where(map)
where
#for ( x : map)
#(for.first ? "", "and") #(x.key) #(x.value)
#end
#end
使用的时候调用一下 where 函数即可:
#@where(condMap)
详细文档在此:
http://www.jfinal.com/doc/5-13
回复
HingLo
2018-05-21 16:02
@JFinal
我都做完上线了,才看到还有sql的管理功能,哭瞎
回复
发送
我要反馈
热门反馈
扫码入社
#define where(map)
where
#for ( x : map)
#(for.first ? "", "and") #(x.key) #(x.value)
#end
#end
使用的时候调用一下 where 函数即可:
#@where(condMap)
详细文档在此:
http://www.jfinal.com/doc/5-13