Place value of a table2 in a query to table1.
I have a query in SQL
SELECT ROW_NUMBER() over (partition by IdCertificado order by FechaCambio) Consecutivo,
upper (IdCertificado) IdCertificado , IdTipoSolicitud ,
cast (FechaCambio AS date) FechaCambio,
Observaciones , NumFolio, IdEmpleado from Tabla1 with(nolock)
and throws this at me
I have a table2 which contains this
How can I make the RequestDescription instead of throwing the IDTypeApplication?
Thank you.