Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. select partido.equipo_local ||' (' || equipo.ciudad || ') ' as local,partido.equipo_visitante ||' (' || equipo.ciudad || ') ' as visitante, (partido.puntos_local || '-' || partido.puntos_visitante) as resultado
  2. from equipo,partido
  3. where (partido.equipo_local = equipo.nombre or partido.equipo_visitante = equipo.nombre)
  4. and (to_number(partido.puntos_visitante-partido.puntos_local))>100;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement