-
- All Known Subinterfaces:
XMLTableColumnPathStep,XMLTableColumnsStep,XMLTablePassingStep
public interface XMLTableColumnsFirstStepA step in the construction of anXMLTABLEexpression.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull XMLTableColumnForOrdinalityStepcolumn(String name)Add a column to theCOLUMNSclause of theXMLTABLEexpression.@NotNull XMLTableColumnPathStepcolumn(String name, DataType<?> type)Add a column to theCOLUMNSclause of theXMLTABLEexpression.@NotNull XMLTableColumnPathStepcolumn(Field<?> name)Add a column to theCOLUMNSclause of theXMLTABLEexpression.@NotNull XMLTableColumnPathStepcolumn(Field<?> name, DataType<?> type)Add a column to theCOLUMNSclause of theXMLTABLEexpression.@NotNull XMLTableColumnForOrdinalityStepcolumn(Name name)Add a column to theCOLUMNSclause of theXMLTABLEexpression.@NotNull XMLTableColumnPathStepcolumn(Name name, DataType<?> type)Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
-
-
Method Detail
-
column
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnForOrdinalityStep column(String name)
Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
column
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnForOrdinalityStep column(Name name)
Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
column
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnPathStep column(Field<?> name)
Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
column
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnPathStep column(String name, DataType<?> type)
Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
column
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnPathStep column(Name name, DataType<?> type)
Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
column
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnPathStep column(Field<?> name, DataType<?> type)
Add a column to theCOLUMNSclause of theXMLTABLEexpression.
-
-