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