这个sql语句在nutz中怎么实现: where '01/002' like field+'%'
你确定这sql合法? 出大招 new Static
sql语句合法,写过这样的sql语句
这样写了:cnd.and(new Static(String.format(" %s like fOrgFID+'%' ", orgFID)));有没有更好的方案
cnd.and(new Static(String.format(" %s like fOrgFID+'%' ", orgFID)));
cnd.and(new Static(String.format(" %s like concat(fOrgFID,'%%') ", orgFID)));
这是个很有用的查询,经常会用到,兽总考虑加一下这种cnd吧。