"How to pass calculated parameters to Execute SQL operator?"
Hi,
I'm trying to run an SQL statement with with parameters I calculated in previous statements.
For example, the statement "DELETE FROM `Table` WHERE `Year` = 2015" works just fine.
However, I'd like pass the year (2015) as a parameter value because the value is being calculated dynamically.
The statement I'm trying to execute is
"DELETE FROM `Table` WHERE `Year` = CalculatedYear"
How could I achieve this?
I'm trying to run an SQL statement with with parameters I calculated in previous statements.
For example, the statement "DELETE FROM `Table` WHERE `Year` = 2015" works just fine.
However, I'd like pass the year (2015) as a parameter value because the value is being calculated dynamically.
The statement I'm trying to execute is
"DELETE FROM `Table` WHERE `Year` = CalculatedYear"
How could I achieve this?
Find more posts tagged with
Sort by:
1 - 3 of
31
you can either look at the context menu or use the operators, e.g. extract macro.
Cheers,
Martin