Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

convert date functions in qlikview to sql

Hi,

I want to convert the following as where calue condition which used Qlikview function into sql and run and check it sql side.

could you please help me in converting there Qlikview function into sql

(DATE(DATE#(MID(time,1,10),'YYYY-MM-DD'))>=DATE(ADDMONTHS(TODAY(),-24))) AND (DATE(DATE#(MID(time,1,10),'YYYY-MM-DD')))<=DATE(TODAY()) .

13 Replies
SreeniJD
Specialist
Specialist

Hi Teja

Can you clarify one thing... you want to convert the SQL from Qlikview to SQL (Oralce,MySQL) and execute the same in Oracle DB?

Sreeni

Anonymous
Not applicable
Author

No I wanted to run a sql query from the Qlikview and I am connecting to the database database from Qlikview.

settu_periasamy
Master III
Master III

Hi,

May be like this..

CONVERT(TIME,GETDATE())>=DATEADD(month,-24,CURDATE()) AND

CONVERT(TIME,GETDATE())<=CURDATE()

vincent_ardiet
Specialist
Specialist

Have you tried to run my code directly on SQLServer ?