net.sf.jsqlparser.statement.select.Select.setWithItemsList()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(210)

本文整理了Java中net.sf.jsqlparser.statement.select.Select.setWithItemsList()方法的一些代码示例,展示了Select.setWithItemsList()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Select.setWithItemsList()方法的具体详情如下:
包路径:net.sf.jsqlparser.statement.select.Select
类名称:Select
方法名:setWithItemsList

Select.setWithItemsList介绍

暂无

代码示例

代码示例来源:origin: JSQLParser/JSqlParser

final public Select Select() throws ParseException {Select select = new Select();
  SelectBody selectBody = null;
  List<WithItem> with = null;
  switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
  case K_WITH:{
   with = WithList();

   break;
   }
  default:
   jj_la1[93] = jj_gen;
   ;
  }
  selectBody = SelectBody();
select.setWithItemsList(with);
    select.setSelectBody(selectBody);
    return select;
}

代码示例来源:origin: alibaba/mdrill

final public Select Select() throws ParseException {
   Select select = new Select();
   SelectBody selectBody = null;
   List with = null;
 switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
 case K_WITH:
  with = WithList();
             select.setWithItemsList(with);
  break;
 default:
  jj_la1[22] = jj_gen;
  ;
 }
 selectBody = SelectBody();
       select.setSelectBody(selectBody);
       {if (true) return select;}
 throw new Error("Missing return statement in function");
}

代码示例来源:origin: pagehelper/Mybatis-PageHelper

newSelect.setWithItemsList(select.getWithItemsList());

代码示例来源:origin: com.eas.platypus/platypus-js-sql-parser

final public Select Select() throws ParseException {Select select = new Select();
    SelectBody selectBody = null;
    List with = null;
  switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
  case K_WITH:{
   with = WithList(select);
select.setWithItemsList(with);
   break;
   }
  default:
   jj_la1[24] = jj_gen;
   ;
  }
  selectBody = SelectBody();
select.setSelectBody(selectBody);
        {if ("" != null) return select;}
  throw new Error("Missing return statement in function");
 }

代码示例来源:origin: org.opencadc/cadc-jsqlparser-compat

final public Select Select() throws ParseException {Select select = new Select();
    SelectBody selectBody = null;
    List with = null;
  switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
  case K_WITH:{
   with = WithList();
select.setWithItemsList(with);
   break;
   }
  default:
   jj_la1[22] = jj_gen;
   ;
  }
  selectBody = SelectBody();
select.setSelectBody(selectBody);
        {if ("" != null) return select;}
  throw new Error("Missing return statement in function");
 }

代码示例来源:origin: com.github.jsqlparser/jsqlparser

final public Select Select() throws ParseException {Select select = new Select();
  SelectBody selectBody = null;
  List<WithItem> with = null;
  switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
  case K_WITH:{
   with = WithList();

   break;
   }
  default:
   jj_la1[93] = jj_gen;
   ;
  }
  selectBody = SelectBody();
select.setWithItemsList(with);
    select.setSelectBody(selectBody);
    return select;
}

代码示例来源:origin: com.hand.hap.cloud/hap-mybatis-mapper-starter

newSelect.setWithItemsList(select.getWithItemsList());

代码示例来源:origin: com.github.pagehelper/pagehelper

newSelect.setWithItemsList(select.getWithItemsList());

相关文章