1

So in Hue I've entered a simple query(has to be as simple as possible, as others will run it too) to just get a limit of 20 records. The query is:

Select * from tablename Limit 20

The problem is that the query returns column names in this format: tablename.columnname

I need JUST the column name to be returned, NOT the table name referenced at all. How is this achieved without going into a large "from" statement spelling out all of the columns(only other way I currently know)?

Thanks in advance!

Supernova
  • 29
  • 6

1 Answers1

0

Not the best but you could do a right click on the '*' of SELECT * and then expand all the column names:

enter image description here

Romain
  • 7,022
  • 3
  • 30
  • 30