Dear Friends,
I have a long query with an input parameter. I want this input parameter be all teh values returned from another query.
SELECT DIR FROM DIRECCAO
BIG QUERY with DIR input parameter.
How can I do?
Thanks.
SELECT @.DIR = DIR FROM DIRECCAO
EXEC BIG_QUERY @.DIR
HTH,
Babu
|||IT WORKS AND THE QUERY IS:
ALTER PROCEDURE [dbo].[GD_SP_FACTURA_GLOBAL]
AS
DECLARE @.DIR nvarchar(10)
SELECT @.DIR = DIR_NOME FROM Direccao
EXECUTE dbo.GD_SP_FACTURA_ValorTotal @.DIR
BUT How can I SUM all the values returned by the BIGQuery?
THANKS!!
|||How can I have the sum and it's possible to return a list of all values returned by the bigQuery? THANKS!!!|||Could anyone help me?
Thanks!
No comments:
Post a Comment