5354555657585960
} @Override public IGroupingHavingOrderOffsetLimitGet selectReduced(String projection, where where) { list.add(new Select(SelectType.REDUCED, projection, where)); return compose(IGet.class); }
6061626364656667
} @Override public IGroupingHavingOrderOffsetLimitGet selectDistinct(String projection, where where) { list.add(new Select(SelectType.DISTINCT, projection, where)); return compose(IGet.class); }
6768697071727374
} @Override public IGroupingHavingOrderOffsetLimitGet select(String projection, where where) { list.add(new Select(SelectType.DEFAULT, projection, where)); return compose(IGet.class); }