Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to load data from database with condition apply

HI,

please help me in loading the data from database which should restrict rows based on my condition.

ex: select * from ot_sales where sm_code='E2783';  (this is an sql stmt. how to apply this in qlikview while loading)

Regards

Vignesh

1 Solution

Accepted Solutions
sunny_talwar

I think you can continue using your SQL in QlikView as well:

TableName:

SQL SELECT *

FROM ot_sales

WHERE sm_code = 'E2783';

But if for some reason you want to apply this in QlikView, you can do this

TableName:

LOAD *

Where sm_code = 'E2783';

SQL SELECT *

FROM ot_sales;

View solution in original post

3 Replies
sunny_talwar

I think you can continue using your SQL in QlikView as well:

TableName:

SQL SELECT *

FROM ot_sales

WHERE sm_code = 'E2783';

But if for some reason you want to apply this in QlikView, you can do this

TableName:

LOAD *

Where sm_code = 'E2783';

SQL SELECT *

FROM ot_sales;

vikasmahajan

Hi,

I think this conditions can be handled in qlikview set analysis load all data into qlikview instead of conditions

apply set analysis for expressions.

sm_code={'E2783'}

Hope this helps you

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Not applicable
Author

thanks