mirror of
https://github.com/apache/impala.git
synced 2026-01-05 03:01:02 -05:00
16 lines
206 B
Plaintext
16 lines
206 B
Plaintext
select * from tinytable
|
|
---- TYPES
|
|
string, string
|
|
---- RESULTS
|
|
'aaaaaaa','bbbbbbb'
|
|
'ccccc','dddd'
|
|
'eeeeeeee','f'
|
|
====
|
|
select a from tinytable
|
|
---- TYPES
|
|
string
|
|
---- RESULTS
|
|
'aaaaaaa'
|
|
'ccccc'
|
|
'eeeeeeee'
|
|
==== |