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: 
sergio0592
Specialist III
Specialist III

Issue with use variable in SQL statement

Hi all,

I'am looking for use in my loading SQL statement, a date stored in a variable.

I have in my script sheet :

1.SQL which fetch DT_MAX

Select

to_char(max(DH_START),'DD/MM/YYYY') as DT_MAX
from MY_TABLE;

2.Assignment of DT_MAX in a variable

SET V_DT_END=DT_MAX;

3.Use of V_DT_END in my SQL statement

Select xxx

from xxx

where DT between '01/01/2016' and $(V_DT_END)

The third step don't works. If i write  between '01/01/2016' and '14/07/2017', it works. The problem is '. How to reproduce 'DT' with V_DT_END??

I have tried différents ways but the issue remains.

Thanks

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi Shivesh,

You are correct,

However Syntax is

LET V_DT_END=Peek('DT_MAX');

Regards,

Antonio

View solution in original post

11 Replies
mangalsk
Creator III
Creator III

Write quotes ('$(V_DT_END)')

shiveshsingh
Master
Master

Use peek function

Peek(field_name[, row_no[, table_name ] ] )

SET V_DT_END=Peek(DT_MAX);

antoniotiman
Master III
Master III

Hi Shivesh,

You are correct,

However Syntax is

LET V_DT_END=Peek('DT_MAX');

Regards,

Antonio

sergio0592
Specialist III
Specialist III
Author

Already tried but don't works

shiveshsingh
Master
Master

what value is thsi variable holding after executing the script?

i mean after using peek function..

u can check in textbox

sergio0592
Specialist III
Specialist III
Author

Thanks, but don't works with LET V_DT_END=Peek('DT_MAX') and after DT between '01/01/2016' and $(V_DT_END)

antoniotiman
Master III
Master III

'$(V_DT_END)'

Kushal_Chawda

try below


1.SQL which fetch DT_MAX

Date:

Select

to_char(max(DH_START),'DD/MM/YYYY') as DT_MAX
from MY_TABLE;

2.Assignment of DT_MAX in a variable

LET V_DT_ENDpeek('DT_MAX',0,'Date');

3.Use of V_DT_END in my SQL statement

Select xxx

from xxx

where DT between '01/01/2016' and '$(V_DT_END)'

sergio0592
Specialist III
Specialist III
Author

Thanks Antonio, it works. I have to put ' two times, one in Peek('DT_MAX') and again with '$(V_DT_END)'. Strange no?