Data Integration-Free and PayGo
- Data Integration-Free and PayGo
- All Products
concat("Hello"," ",$input.n1)
you get the following output:concat("Hello", " ",$input.n1)
Hello World
let $n1 := number($input.n1) let $n2 := number($input.n2) let $r1 := if ($n1 > $n2) then "Greater: N1 > N2" else if ($n1 < $n2) then "Less: N1 < N2" else "Same" return $r1
you get the following output:let $n1 := number($input.n1) let $n2 := number($input.n2) let $r1 := if ($n1 > $n2) then "Greater: N1 > N2" else if ($n1 < $n2) then "Less: N1 < N2" else "Same" return $r1
Here,Less: N1<N2
Less: N1<N2