mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
docs: Add sql_with_zeppelin
This commit is contained in:
parent
053794e84f
commit
5b43993a4f
2 changed files with 40 additions and 5 deletions
|
|
@ -19,7 +19,7 @@ limitations under the License.
|
|||
-->
|
||||
{% include JB/setup %}
|
||||
|
||||
# Spark with Zeppelin
|
||||
# Spark support in Zeppelin
|
||||
|
||||
<div id="toc"></div>
|
||||
|
||||
|
|
@ -38,7 +38,9 @@ Apache Zeppelin
|
|||
|
||||
<br/>
|
||||
|
||||
For the further information about Spark support in Zeppelin, please check [Spark interpreter](../interpreter/spark.html)
|
||||
For the further information about Spark support in Zeppelin, please check
|
||||
|
||||
- [Spark Interpreter](../interpreter/spark.html)
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -19,11 +19,44 @@ limitations under the License.
|
|||
-->
|
||||
{% include JB/setup %}
|
||||
|
||||
# SQL with Zeppelin
|
||||
# SQL support in Zeppelin
|
||||
|
||||
<div id="toc"></div>
|
||||
|
||||
Welcome to Apache Zeppelin! On this page are instructions to help you get started.
|
||||
<br/>
|
||||
|
||||
Apache Zeppelin
|
||||
|
||||
- provides [JDBC Interpreter](../interpreter/jdbc.html) which allows you can connect any JDBC data sources seamlessly
|
||||
* [Postgres](../interpreter/jdbc.html#postgres)
|
||||
* [MySQL](../interpreter/jdbc.html#mysql)
|
||||
* [MariaDB](../interpreter/jdbc.html#mariadb)
|
||||
* [AWS Redshift](../interpreter/jdbc.html#redshift)
|
||||
* [Apache Hive](../interpreter/jdbc.html#hive)
|
||||
* [Apache Phoenix](../interpreter/jdbc.html#apache-phoenix)
|
||||
* [Apache Drill](../interpreter/jdbc.html#apache-drill)
|
||||
* [Apache Tajo](../interpreter/jdbc.html#apache-tajo)
|
||||
* and so on
|
||||
- [Spark Interpreter](../interpreter/spark.html) supports [SparkSQL](http://spark.apache.org/sql/)
|
||||
- [Python Interpreter](../interpreter/python.html) supports [pandasSQL](../interpreter/python.html#sql-over-pandas-dataframes)
|
||||
- can create query result including **UI widgets** using [Dynamic Form](../usage/dynamic_form/intro.html)
|
||||
|
||||
```sql
|
||||
%sql
|
||||
select age, count(1) value
|
||||
from bank
|
||||
where age < ${maxAge=30}
|
||||
group by age
|
||||
order by age
|
||||
```
|
||||
|
||||
<br/>
|
||||
|
||||
For the further information about SQL support in Zeppelin, please check
|
||||
|
||||
- [JDBC Interpreter](../interpreter/jdbc.html)
|
||||
- [Spark Interpreter](../interpreter/spark.html)
|
||||
- [Python Interpreter](../interpreter/python.html)
|
||||
|
||||
|
||||
## Requirements
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue