6.8 KiB
6.8 KiB
1 | taos> select EXP(0) |
---|---|
2 | exp(0) | |
3 | ============================ |
4 | 1.000000000000000 | |
5 | taos> select EXP(1) |
6 | exp(1) | |
7 | ============================ |
8 | 2.718281828459045 | |
9 | taos> select EXP(1.5) |
10 | exp(1.5) | |
11 | ============================ |
12 | 4.481689070338065 | |
13 | taos> select EXP(100) |
14 | exp(100) | |
15 | ============================ |
16 | 2.688117141816136e+43 | |
17 | taos> select EXP(-1) |
18 | exp(-1) | |
19 | ============================ |
20 | 0.367879441171442 | |
21 | taos> select EXP(-1.5) |
22 | exp(-1.5) | |
23 | ============================ |
24 | 0.223130160148430 | |
25 | taos> select EXP(-100) |
26 | exp(-100) | |
27 | ============================ |
28 | 0.000000000000000 | |
29 | taos> select EXP(1) + 1 |
30 | exp(1) + 1 | |
31 | ============================ |
32 | 3.718281828459045 | |
33 | taos> select EXP(1) - 1 |
34 | exp(1) - 1 | |
35 | ============================ |
36 | 1.718281828459045 | |
37 | taos> select EXP(1) * 1 |
38 | exp(1) * 1 | |
39 | ============================ |
40 | 2.718281828459045 | |
41 | taos> select EXP(1) / 1 |
42 | exp(1) / 1 | |
43 | ============================ |
44 | 2.718281828459045 | |
45 | taos> select exp(1) from ts_4893.meters limit 5 |
46 | exp(1) | |
47 | ============================ |
48 | 2.718281828459045 | |
49 | 2.718281828459045 | |
50 | 2.718281828459045 | |
51 | 2.718281828459045 | |
52 | 2.718281828459045 | |
53 | taos> select exp(1) + 1 from ts_4893.meters limit 1 |
54 | exp(1) + 1 | |
55 | ============================ |
56 | 3.718281828459045 | |
57 | taos> select exp(1) - 1 from ts_4893.meters limit 1 |
58 | exp(1) - 1 | |
59 | ============================ |
60 | 1.718281828459045 | |
61 | taos> select exp(1) * 2 from ts_4893.meters limit 1 |
62 | exp(1) * 2 | |
63 | ============================ |
64 | 5.436563656918090 | |
65 | taos> select exp(1) / 2 from ts_4893.meters limit 1 |
66 | exp(1) / 2 | |
67 | ============================ |
68 | 1.359140914229523 | |
69 | taos> select exp(2) + exp(1) from ts_4893.meters limit 1 |
70 | exp(2) + exp(1) | |
71 | ============================ |
72 | 10.107337927389695 | |
73 | taos> select exp(2) - exp(1) from ts_4893.meters limit 1 |
74 | exp(2) - exp(1) | |
75 | ============================ |
76 | 4.670774270471606 | |
77 | taos> select exp(2) * exp(1) from ts_4893.meters limit 1 |
78 | exp(2) * exp(1) | |
79 | ============================ |
80 | 20.085536923187668 | |
81 | taos> select exp(2) / exp(1) from ts_4893.meters limit 1 |
82 | exp(2) / exp(1) | |
83 | ============================ |
84 | 2.718281828459046 | |
85 | taos> select exp(1) + id from ts_4893.meters order by ts limit 5 |
86 | exp(1) + id | |
87 | ============================ |
88 | 2.718281828459045 | |
89 | 3.718281828459045 | |
90 | 4.718281828459045 | |
91 | 5.718281828459045 | |
92 | 6.718281828459045 | |
93 | taos> select exp(id) + id from ts_4893.meters order by ts limit 5 |
94 | exp(id) + id | |
95 | ============================ |
96 | 1.000000000000000 | |
97 | 3.718281828459045 | |
98 | 9.389056098930650 | |
99 | 23.085536923187668 | |
100 | 58.598150033144236 | |
101 | taos> select abs(EXP(10)) |
102 | abs(exp(10)) | |
103 | ============================ |
104 | 22026.465794806717895 | |
105 | ============================ |
106 | 485165195.409790337085724 | |
107 | taos> select sqrt(EXP(10)) |
108 | sqrt(exp(10)) | |
109 | ============================ |
110 | 148.413159102576600 | |
111 | taos> select cast(EXP(10) as int) |
112 | cast(exp(10) as int) | |
113 | ======================= |
114 | 22026 | |
115 | taos> select EXP(sqrt(id)) from ts_4893.meters order by ts limit 5 |
116 | exp(sqrt(id)) | |
117 | ============================ |
118 | 1.000000000000000 | |
119 | 2.718281828459045 | |
120 | 4.113250378782928 | |
121 | 5.652233674034091 | |
122 | 7.389056098930650 | |
123 | taos> select EXP(EXP(EXP(EXP(0)))) |
124 | exp(exp(exp(exp(0)))) | |
125 | ============================ |
126 | 3814279.104760214220732 | |
127 | taos> select exp(2) |
128 | exp(2) | |
129 | ============================ |
130 | 7.389056098930650 | |
131 | taos> select exp(0.5) |
132 | exp(0.5) | |
133 | ============================ |
134 | 1.648721270700128 | |
135 | taos> select exp(current) from ts_4893.d0 order by ts limit 10 |
136 | exp(current) | |
137 | ============================ |
138 | 42192.578453635847836 | |
139 | 5292.258432380726845 | |
140 | 17943.802618770550907 | |
141 | 75583.992598717435612 | |
142 | 44622.804904812772293 | |
143 | 4954.246535954979663 | |
144 | 14705.836248958077704 | |
145 | 57641.604897186582093 | |
146 | 75056.754435561466380 | |
147 | 30853.327779395312973 | |
148 | taos> select exp(current) from ts_4893.meters order by ts limit 10 |
149 | exp(current) | |
150 | ============================ |
151 | 42192.578453635847836 | |
152 | 5292.258432380726845 | |
153 | 17943.802618770550907 | |
154 | 75583.992598717435612 | |
155 | 44622.804904812772293 | |
156 | 4954.246535954979663 | |
157 | 14705.836248958077704 | |
158 | 57641.604897186582093 | |
159 | 75056.754435561466380 | |
160 | 30853.327779395312973 | |
161 | taos> select exp(null) |
162 | exp(null) | |
163 | ============================ |
164 | NULL | |
165 | taos> select exp(100000) |
166 | exp(100000) | |
167 | ============================ |
168 | NULL | |
169 | taos> select exp(-1000) |
170 | exp(-1000) | |
171 | ============================ |
172 | 0.000000000000000 | |
173 | taos> select exp(-9999999999) |
174 | exp(-9999999999) | |
175 | ============================ |
176 | 0.000000000000000 | |
177 | taos> select exp(0.0001) |
178 | exp(0.0001) | |
179 | ============================ |
180 | 1.000100005000167 | |
181 | taos> select exp(pi()) |
182 | exp(pi()) | |
183 | ============================ |
184 | 23.140692632779267 | |
185 | taos> select exp(voltage) from ts_4893.meters limit 1 |
186 | exp(voltage) | |
187 | ============================ |
188 | 9.529727902367202e+95 | |
189 | taos> select exp(current) from ts_4893.meters limit 1 |
190 | exp(current) | |
191 | ============================ |
192 | 42192.578453635847836 | |
193 | taos> select exp(phase) from ts_4893.meters limit 1 |
194 | exp(phase) | |
195 | ============================ |
196 | 1.663457087766762 | |
197 | taos> select exp(voltage + current) from ts_4893.meters limit 1 |
198 | exp(voltage + current) | |
199 | ============================ |
200 | 4.020837921624308e+100 | |
201 | taos> select exp(abs(current)) from ts_4893.meters limit 1 |
202 | exp(abs(current)) | |
203 | ============================ |
204 | 42192.578453635847836 | |
205 | taos> select exp(log(voltage)) from ts_4893.meters limit 1 |
206 | exp(log(voltage)) | |
207 | ============================ |
208 | 220.999999999999915 | |
209 | ============================ |
210 | 9.529727902367202e+95 | |