SQLSelectIntoAddExpression Method |
Adds a SQL expression string to the SELECT clause inserting into the specified column.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public void AddExpression(
string expr,
string destinationColumn,
bool referencesColumn
)
Public Sub AddExpression (
expr As String,
destinationColumn As String,
referencesColumn As Boolean
)
Parameters
- expr
- Type: SystemString
The SQL expression to use in the SELECT. - destinationColumn
- Type: SystemString
The column into which to insert the value. - referencesColumn
- Type: SystemBoolean
Specifies whether or not the SELECT expr includes a reference to columns in the source SELECT.
See Also