cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Fetch constant value/record

sinisa_zubic
Dynatrace Champion
Dynatrace Champion
hello,
 
Is there any way in DQL to return a constant value? In SQL it would be something like
select 'hello world' from dual

Best,

Sini

1 REPLY 1

educampver
Dynatrace Advisor
Dynatrace Advisor

Hi Sinisa, the data command allows you to generate sample data during query runtime. You could do something like this:

 

 

 

data (record(data = "hello world"))

 

 

Featured Posts