Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Andrew_Maynard1
Contributor
Contributor

Using SQL in QlikView

How can I just pull the first line from a table ? 

I tried "SELECT TOP 1 * FROM [TableName]" ... didn't seem to like the 1.

Even better, How would I just pull the column list ?

Even better than that, where is a user manual for SQL commands that work in QlikView

Labels (2)
1 Reply
BrunPierre
Partner - Master
Partner - Master

Use the First prefix in a preceding  load.

[TableName]:

First 1

LOAD *;

SQL SELECT * FROM [TableName];