blob: 50cc8ecd692e91c3b72d11f246abab7426a3af17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
use plato;
insert into Output
select
a1 + b1 as math_add,
a1 - b1 as math_sub,
a1 * b1 as math_mul,
a1 / b1 as math_div,
a1 % b1 as math_mod,
-a1 as math_neg,
(a1 + b1) * k1 as math_complex,
a1 + 1 as math_add_const,
a1 * 2 as math_mul_const,
ABS(a1 - b1) as math_abs,
Math::Sqrt(CAST(a1 AS Double)) as math_sqrt,
CAST(a1 + b1 AS Double) as math_cast,
from Input1;
|