print operator
Learn how to use the print operator to output a single row with one or more scalar expression results as columns.
Outputs a single row with one or more scalar expression results as columns.
Syntax
print
[ColumnName =
] ScalarExpression [,
…]
Parameters
Name | Type | Required | Description |
---|---|---|---|
ColumnName | string | The name to assign to the output column. | |
ScalarExpression | string | ✔️ | The expression to evaluate. |
Returns
A table with one or more columns and a single row. Each column returns the corresponding value of the evaluated ScalarExpression.
Examples
The examples in this section show how to use the syntax to help you get started.
Print sum and variable value
The following example outputs a row with two columns. One column contains the sum of a series of numbers and the other column contains the value of the variable, x
.
print 0 + 1 + 2 + 3 + 4 + 5, x = "Wow!"
Output
print_0 | x |
---|---|
15 | Wow! |
Print concatenated string
The following example outputs the results of the strcat()
function as a concatenated string.
print banner=strcat("Hello", ", ", "World!")
Output
banner |
---|
Hello, World! |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.