Last active
August 29, 2015 14:03
-
-
Save alexmoleiro/e9417c3f0d2b5cdcdcd2 to your computer and use it in GitHub Desktop.
Dominios que tengan hosting contratado
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 * 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