Interface SQLCreateStatement.AsOrColumns
- All Known Implementing Classes:
SQLCreateStatement.SQLCreateStatementBuilder
- Enclosing class:
- SQLCreateStatement
public static interface SQLCreateStatement.AsOrColumns
The As or Columns part of building a
SQLCreateStatement-
Method Summary
Modifier and TypeMethodDescriptionas(SQLSelectStatement selectStmt) Create the table using another tablecolumns(ColumnDefinition... columns) columns(List<ColumnDefinition> columns)
-
Method Details
-
as
Create the table using another table- Parameters:
selectStmt- Theselect statementto use to grab another table- Returns:
- this, to continue building
-
columns
- Parameters:
columns- Thecolumnsto create in the table- Returns:
- this, to continue building
-
columns
- Parameters:
columns- Thecolumnsto create in the table- Returns:
- this, to continue building
-