Created
October 11, 2011 15:06
-
-
Save aalvesjr/1278343 to your computer and use it in GitHub Desktop.
RelGreent
This file contains 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 produto.codproduto AS Codigo, | |
produtoean.codean AS CodBarra, | |
produto.descricaofiscal AS Descricao, | |
(produtoestab.sldentrada-produtoestab.sldsaida) AS Estoque, | |
produtoestab.custorep AS Custo, | |
produtoestab.precoatc AS VlrVenda, | |
(CASE WHEN produtoestab.custorep = 0 THEN 0 | |
WHEN produtoestab.precoatc = 0 THEN 0 | |
ELSE ((produtoestab.precoatc/produtoestab.custorep)-1)*100 END) AS MargemUtilizada, | |
'__________' AS PrecoVenda | |
FROM produto | |
LEFT JOIN produtoean ON (produto.codproduto=produtoean.codproduto) | |
LEFT JOIN produtoestab ON (produto.codproduto=produtoestab.codproduto) | |
WHERE produtoestab.codestabelec = 1 | |
ORDER BY produto.descricaofiscal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment