
Contributor
2023-02-03
11:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
527 Views
1 Reply

Partner - Master
2023-02-03
02:10 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use the First prefix in a preceding load.
[TableName]:
First 1
LOAD *;
SQL SELECT * FROM [TableName];
500 Views
