Is there any way to get the parameter values used in the SELECT
clause in the WHERE
result?
Example:
SELECT
a.*, cast(:dataIni as date) AS inidate , cast(:dataFin as date) AS inidate
FROM
mytable a
WHERE
a.date BETWEEN :dataIni AND :dataFin
Is there any way to return the parameter values as query fields using Firebird?