selvi subramanian

selvi subramanian

  • NA
  • 799
  • 572.2k

query is executed but operations are not sucess.

Feb 28 2013 7:00 AM
create procedure mathopera
(
@c int,
@e int,

@g int,
@i int
)

as
begin
set nocount on

select
(a+b) as c,
(@c-d) as e,
(@e*f) as g,
(@g/h) as i

from maths
end
 

if i entered the values all the operations have to be not performed .any mistake means correct it



 

Answers (4)