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: 
fabricius
Contributor II
Contributor II

"Translation of SQL code to QV

Can anyone "translate" this SQL code for me into something that I can use in Qlikview?

select distinct WEXAM_ID, WEXAM_ID_STRING, WEXAM_DATE from W_EXAM

left join W_EXAM_FOLDER on WEXAM_ID = WEF_EXAM_ID

left join W_IMAGE_FOLDER on WEF_ID = WIF_EF_ID

where WEF_ID is not null and WIF_ID is null and WEXAM_DATE between '2017-10-01' and '2017-10-31'

group by WEXAM_ID, WEXAM_ID_STRING, WEXAM_DATE, WEF_BF_ID

order by WEXAM_ID_STRING;

3 Replies
woshua5550
Creator III
Creator III

why you have to do this ? what is your data source ?

shraddha_g
Partner - Master III
Partner - Master III

you can direcly use this query in qlik

jonathandienst
Partner - Champion III
Partner - Champion III

>>something that I can use in Qlikview

That's a little vague. Anyway, it is not necessary to translate the SQL. The SQL query is executed on the database server, not in QV, so you can add the query as-is to your load script with a CONNECT call and your SQL code with a SQL prefix:

CONNECT ....;

TableName:

SQL

SELECT ....;

If you have a reason for "translating" into QV, perhaps you could be a lot more specific about your requirement.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein