Skip to content

Instantly share code, notes, and snippets.

@alexmoleiro
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save alexmoleiro/e9417c3f0d2b5cdcdcd2 to your computer and use it in GitHub Desktop.

Select an option

Save alexmoleiro/e9417c3f0d2b5cdcdcd2 to your computer and use it in GitHub Desktop.
Dominios que tengan hosting contratado
select * from cesta_detalle cd
where idproducto = 'dominio_registro'
and
(
idcesta_detalle=
(select idcesta_detalle_parent
from cesta_detalle cdd
where cd.idcesta_detalle=cdd.idcesta_detalle_parent
)
or
idcesta_detalle_parent=
(select idcesta_detalle
from cesta_detalle cdd
where cd.idcesta_detalle_parent=cdd.idcesta_detalle
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment