You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by Apache Wiki <wi...@apache.org> on 2013/07/07 14:30:29 UTC

[Tajo Wiki] Trivial Update of "GettingStarted" by HyunsikChoi

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tajo Wiki" for change notification.

The "GettingStarted" page has been changed by HyunsikChoi:
http://wiki.apache.org/tajo/GettingStarted?action=diff&rev1=6&rev2=7

Comment:
updated the CLI commands by TAJO-79.

  
  If you want to know DDL statements in more detail, please see Query Language.
  {{{
- tajo> /t;
+ tajo> \d
  table1
  }}}
  
- '/t' command shows the list of tables.
+ '\d' command shows the list of tables.
  
  {{{
- tajo> /d table1;
+ tajo> \d table1
  
  table name: table1
  table path: file:/home/x/table1
@@ -150, +150 @@

  type    TEXT
  }}}
  
- '/d [table name]' command shows the description of a given table.
+ '\d [table name]' command shows the description of a given table.
  
  Now, you can execute SQL queries as follows: