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: 
Anonymous
Not applicable

Where clause issue

Initially when i was loading from QVD, these where clauses work sucesssfully, but now the script hangs when i load from the foxpro .db

WHERE LEFT(clicod,1) = 'B';

WHERE NOT clicod = 'IN' and NOT LEFT(clicod,1) = 'B';

1 Solution

Accepted Solutions
Not applicable
Author

Maybe with : WHERE clicod <> 'IN' and LEFT(clicod,1) <> 'B';

View solution in original post

2 Replies
Not applicable
Author

Maybe with : WHERE clicod <> 'IN' and LEFT(clicod,1) <> 'B';

er_mohit
Master II
Master II

try to work this Code before Load Your Table from foxpro.db

means in preceding load

like

load A,

B

where B=10;

load * from foxpro.db;