다음을 통해 공유


print operator

Applies to: ✅Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

하나 이상의 스칼라 식 결과가 있는 단일 행을 열로 출력합니다.

Syntax

print [ColumnName=] ScalarExpression [, ...]

Learn more about syntax conventions.

Parameters

Name Type Required Description
ColumnName string 출력 열에 할당할 이름입니다.
ScalarExpression string ✔️ 계산할 식입니다.

Returns

하나 이상의 열과 단일 행이 있는 테이블입니다. Each column returns the corresponding value of the evaluated ScalarExpression.

Examples

이 섹션의 예제에서는 구문을 사용하여 시작하는 방법을 보여 줍니다.

The examples in this article use publicly available tables in the help cluster, such as the StormEvents table in the Samples database.

The examples in this article use publicly available tables, such as the Weather table in the Weather analytics sample gallery. 작업 영역의 테이블과 일치하도록 예제 쿼리에서 테이블 이름을 수정해야 할 수 있습니다.

다음 예제에서는 두 개의 열이 있는 행을 출력합니다. 한 열에는 일련의 숫자 합계가 포함되고 다른 열에는 변수의 값 x포함됩니다.

print 0 + 1 + 2 + 3 + 4 + 5, x = "Wow!"

Output

print_0 x
15 Wow!

다음 예제에서는 연결된 문자열로 strcat() 함수의 결과를 출력합니다.

print banner=strcat("Hello", ", ", "World!")

Output

banner
Hello, World!