I have the following Query.
SELECT * FROM EMISORAS TE
INNER JOIN SUCURSALES S ON S.NUM_ = TE.NUM_
WHERE ISR <= .16 AND HTP <= .03 AND TTB <=.06
ORDER BY ISR DESC, HTP DESC, TTBDESC
But I need to show the other registers, that is to say that the Where would not work for me, so I imagine something this way.
SELECT * FROM EMISORAS TE
INNER JOIN SUCURSALES S ON S.NUM_ = TE.NUM_
ORDER BY PENETRACION <= .16 AND ICV <= .03 AND RESERVAS <=.06
First take the filters that I am giving you and then show me the other records.