twosigma / twosigma/beakerx

Auto translate the last output in a SQL kernel/magic

Open
#7,688 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Jupyter Notebook
Stars
2.9k
Forks
383
PR merge metrics
No merged PRs in 30d

Description

Currently we have to use the following syntax to auto translate the result of SQL statement so that it can be used in other programming languages.
```
SELECT * INTO ${citiesTable} FROM cities WHERE longitude BETWEEN -80 and -79;
```
It's appealing to have the result of the last executed SQL statement auto translated. The reason is that users will often run a SQL code to see the result and then decide whether he/she wants to auto translate result for use in other languages. If the user decides to auto translate the result of SQL statement, he will need to

1. update the SQL statement (to use the INTO ${} syntax)
2. rerun the SQL statement

First, this is not convenient. Second, it is very great waste of time if the SQL statement takes lots of time to run.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.