This blog is primarily focus on Java fundamentals and the libraries built on top of Java programming language. Most of the post are example oriented, hope you have fun in reading my blog....:)
Wednesday, 19 October 2022
Hive: tan(n): Return tangent of a number in radians
Signature
tan(n)
hive> SELECT tan(90);
OK
_c0
-1.995200412208242
Time taken: 0.047 seconds, Fetched: 1 row(s)
hive> ;
hive> SELECT tan(45);
OK
_c0
1.6197751905438615
Time taken: 0.036 seconds, Fetched: 1 row(s)
No comments:
Post a Comment