- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
SQL in Analysis cells allows you to analyze and manipulate data within Log Workspaces. This documentation covers the SQL support available in Log Workspaces and includes:
The following SQL syntax is supported:
Syntax | Description | Example |
---|---|---|
SELECT (DISTINCT) DISTINCT: Optional | Retrieves rows from a database, with DISTINCT filtering out duplicate records. |
|
JOIN | Combines rows from two or more tables based on a related column between them. |
|
GROUP BY | Groups rows that have the same values in specified columns into summary rows. |
|
WHERE Includes support for LIKE filters on strings for pattern matching. | Filters records that meet a specified condition. |
|
CASE | Provides conditional logic to return different values based on specified conditions. |
|
Arithmetic Operations | Performs basic calculations using operators like + , - , * , / . |
|
The following SQL functions are supported:
Function | Description | Example |
---|---|---|
MIN | Returns the smallest value in a set of data. |
|
MAX | Returns the maximum value across all input values. |
|
COUNT | Returns the number of input values that are not null. |
|
SUM | Returns the summation across all input values. |
|
AVG | Returns the average value (arithmetic mean) across all input values. |
|
CEIL /CEILING(numerical column) | Returns the value rounded up to the nearest integer. |
|
FLOOR | Returns the value rounded down to the nearest integer. |
|
ROUND | Returns the value rounded to the nearest integer. |
|
LOWER | Returns the string as lower case. |
|
UPPER | Returns the string as uppercase. |
|
ABS | Returns the absolute value. |
|
COALESCE | Returns the first non-null value. |
|
추가 유용한 문서, 링크 및 기사: