Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Nikhil2725
Creator II
Creator II

Where Clause

Hi Team,

I'm taking the data from the MS Access and need to add the where clause while loading the data.. Kindly help me in this..

Sample Data.

LOAD PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc";
SQL SELECT PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc"
FROM "C:\DB Project\DB Project\Backup (34429) of tutorials".PH9;

 

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Perhaps this

LOAD PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc" Where PH9='Value';
SQL SELECT PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc"
FROM "C:\DB Project\DB Project\Backup (34429) of tutorials".PH9;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

3 Replies
Anil_Babu_Samineni

Perhaps this

LOAD PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc" Where PH9='Value';
SQL SELECT PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc"
FROM "C:\DB Project\DB Project\Backup (34429) of tutorials".PH9;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Nikhil2725
Creator II
Creator II
Author

Hi Anil,

we can update the Where conditions at the end as well....

LOAD PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc" ';
SQL SELECT PH9,
"PH9_desc",
PF3,
"Div",
"Div_desc"
FROM "C:\DB Project\DB Project\Backup (34429) of tutorials".PH9 where PH9='Value';

 

Anil_Babu_Samineni

Off course, If you need any Qlik mechanism this won't work for you since SQL function and/or Qlik functions are not the same 🙂

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful