Package com.github.eikecochu.sqlbuilder
Interface BeforeWith
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Withwith(With with)Accept an existing WITH statement as predecessordefault Withwith(java.lang.String name)Continue query with WITHdefault WithwithSQL(java.lang.String sql)Use plain SQL to form this WITH statement
-
-
-
Method Detail
-
with
default With with(java.lang.String name)
Continue query with WITH- Parameters:
name- The name of the with-block- Returns:
- The new WITH statement
-
with
default With with(With with)
Accept an existing WITH statement as predecessor- Parameters:
with- The existing WITH statement- Returns:
- Returns the passed WITH statement
-
withSQL
default With withSQL(java.lang.String sql)
Use plain SQL to form this WITH statement- Parameters:
sql- The sql string- Returns:
- The new WITH statement
-
-