14

I want to print this output

+------------------------------------------------+--+
|                    tab_name                    |
+------------------------------------------------+--+
| table1                                         |
| table2                                         |
| table3                                         |
| wt                                             |
| wa                                             |
| wal                                            |
+------------------------------------------------+--+

AS without header and without table format in beeline

table1
table2 table3 wt
wa
wal

ytoledano
  • 3,003
  • 2
  • 24
  • 39
sande
  • 567
  • 1
  • 10
  • 24

1 Answers1

30

From the shell

beeline --showHeader=false --outputformat=tsv2 -e "select ..."

Within beeline

!set showheader false
!set outputformat tsv2    
select ...;
David דודו Markovitz
  • 42,900
  • 6
  • 64
  • 88