Viewing 5 posts - 1 through 5 (of 5 total)
I usually try to make the query work outside the function first.
For example let's say i want to write a function which gives me monthNumber of the date passed...
August 26, 2009 at 10:18 am
Bob Hovious (8/25/2009)
August 25, 2009 at 7:46 pm
Bob Hovious (8/25/2009)
What if someone makes a typo...
August 25, 2009 at 4:40 pm
Two ways you can do it:
1) If you can add an extra parameter to your stored procedure then the following is a very simple solution, similar to what was suggested...
August 25, 2009 at 11:59 am
This is one of the way you can do it.
DECLARE @Table TABLE (
HeaderID INT NOT NULL
, InQty DECIMAL (18,6)
, UsQty DECIMAL (18,6)
...
August 21, 2009 at 1:51 pm
Viewing 5 posts - 1 through 5 (of 5 total)