Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. select 'usuario', seg.*,'bitacora',
  2. b.*, 'estado' , est.*, 'adn', a.*, 'cotizacion',c.*
  3. from jvv_adn a
  4. left join jvv_seg_usuario seg on seg.idusuario = a.id_usuario
  5. left join jvv_hipotecario h on a.id_adn = h.id_adn
  6. left join jvv_bitacora b on a.id_adn = b.id_adn
  7. left join jvv_estado est on est.id_estado = b.id_estado
  8. left join jvv_cotizacion c on b.id_cotizacion = c.id_cotizacion​;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement