1
Answer

SQL function

Mike Steward

Mike Steward

13y
1.8k
1
Hi friends,
               I want to know that  i make a Sql function
create function gross (@n int)
returns int
as
begin
  return @n+@n*.5+@n*.3+@n*.27+@n*.6-@n*.12;
end;

my question is that how to use this function or means execute function ?
Answers (1)