Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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 II
Partner - Master II

Use the First prefix in a preceding  load.

[TableName]:

First 1

LOAD *;

SQL SELECT * FROM [TableName];