Created
December 10, 2014 18:40
-
-
Save iamlucianojr/048ddf3539b7349a83f9 to your computer and use it in GitHub Desktop.
Cross join
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 bsw_transportadora t | |
cross join bsw_regiao r | |
left join bsw_produto_frete pf on (pf.cd_regiao = r.regiao and pf.cd_transportadora = t.cd_transportadora and pf.cd_produto = 6) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment