Spark SQL CLI — spark-sql
Caution
|
FIXME |
Tip
|
Read about Spark SQL CLI in Spark’s official documentation in Running the Spark SQL CLI. |
1 2 3 4 5 6 7 |
spark-sql> describe function `<>`; Function: <> Usage: a <> b - Returns TRUE if a is not equal to b |
Tip
|
Functions are registered in FunctionRegistry. |
1 2 3 4 5 |
spark-sql> show functions; |
1 2 3 4 5 |
spark-sql> explain extended show tables; |