Created
February 2, 2018 21:25
-
-
Save zafe/f002b7b0336d7d108de24bc04d768295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
CONCEPTO_SUELDO.idCodigoConcepto, | |
CONCEPTO_SUELDO.descripcion, | |
CONCEPTO_SUELDO.cantidad, | |
CONCEPTO_SUELDO.tipo_concepto | |
FROM | |
CONCEPTO_SUELDO | |
INNER JOIN | |
TIPO_LIQUIDACION ON TIPO_LIQUIDACION.CONCEPTO_SUELDO_idCodigoConcepto = CONCEPTO_SUELDO.idCodigoConcepto | |
INNER JOIN | |
CATEGORIA_EMPLEADO ON CATEGORIA_EMPLEADO.idCategoriaEmpleado = TIPO_LIQUIDACION.CATEGORIA_EMPLEADO_idCategoriaEmpleado | |
INNER JOIN | |
EMPLEADO ON EMPLEADO.CATEGORIA_EMPLEADO_idCategoriaEmpleado = CATEGORIA_EMPLEADO.idCategoriaEmpleado | |
WHERE | |
EMPLEADO.idEmpleado = ?; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment