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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Using WHERE in LOAD

Hello,
I'd like some help on how to create a where clause in the load so I dont have to load all the old redundant data
SQL SELECT * FROM G_Ldatabase.dbo."G_L Entry" WHERE 'Posting Date' > '01/08/2005';
sorry if this seems a simple question I am just figuring out qlikview
Thank you for your time it's much appreciated
1 Solution

Accepted Solutions
Not applicable
Author

Try this:

Test:

LOAD

PostingDate,

DTEISS,

DATERETN,

TERMID,

"USER",

"TRANSACTION_DATE",

"TRANSACTION_TIME",

"USER_PROFILE",

"JOB_NAME",

DATIME;

SQL SELECT *

FROM B005592P.ITGDTA.COINPF

where PostingDate > '01/08/2005';

View solution in original post

2 Replies
Not applicable
Author

Try this:

Test:

LOAD

PostingDate,

DTEISS,

DATERETN,

TERMID,

"USER",

"TRANSACTION_DATE",

"TRANSACTION_TIME",

"USER_PROFILE",

"JOB_NAME",

DATIME;

SQL SELECT *

FROM B005592P.ITGDTA.COINPF

where PostingDate > '01/08/2005';

Not applicable
Author

Thanks for that. I relised that posting date was suppose to have speach marks as it was two words