you can create a table to do this

You can create tables in Drill by using the CTAS command:
CREATE TABLE new_table_name AS <query>;

where query is any valid Drill query. Each table you create must have a
unique name. You can include an optional column list for the new table. For
example:
create table logtable(transid, prodid) as select transaction_id, product_id
from ...

You can store table data in one of three formats:

   -

   csv
   -

   parquet
   -

   json


On Fri, Dec 12, 2014 at 11:34 AM, Sungwook Yoon <[email protected]> wrote:

> Export to csv file.
>
> Sungwook
>
>
> On Fri, Dec 12, 2014 at 8:01 AM, Tomer Shiran <[email protected]> wrote:
>
> > What do you mean by export functionality?
> >
> >
> >
> > > On Dec 12, 2014, at 6:50 AM, Sungwook Yoon <[email protected]> wrote:
> > >
> > > Hi,
> > >
> > > Will there be drill explorer export functionality?
> > > If so, when?
> > >
> > > Thanks,
> > >
> > > Sungwook
> >
>

Reply via email to