Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can QV use variables in [SQL SELECT]?
e.g.
SET vCondition = '';
SQL SELECT *
FROM TableName
WHERE A = $(vCondition);
You can also use below:
Let vCondition = '';
SQL SELECT *
FROM TableName
WHERE A = '$(vCondition)'
Regards,
Mayank
You can also use below:
Let vCondition = '';
SQL SELECT *
FROM TableName
WHERE A = '$(vCondition)'
Regards,
Mayank
you wouldn't believe how hard this was to find. I kept searching preceding load with sql select variable and similar things to that...thanks so much for your post. it will greatly reduce the punishment of returning too many useless records!!!