Would it be possible to extend a named query without changing the original query?
For example I would like add extension similar to:
SELECT
TS.Codigo AS Code,
SUM(ROUND(TM.kwhGEN,0)) AS kWh_GEN,
SUM(ROUND(TM.kwhSAI,0)) AS kWh_SAI,
avg(TM.kwGEN) AS avg_kW_GEN,
avg(TM.PUE) AS PUE
FROM T_Medidas_TE TM INNER JOIN T_Sede TS
ON TM.id_sede=TS.id_sede
WHERE TS.id_tipo NOT IN ('1','4','5')
Was it a NamedQuery? If so can you show the actual named query?
Technically, you can use a QueryString parameter to provide query text, but that is a security hole and IMO should be avoided when other tools offer a reasonable alternative.