All Type Coding

Search Here

Two number addition program in sql server

 declare @a int,@b int,@c int
 set @a=5;
 set @b=6;
 set @c=@a+@b;
 print @c
OutPut will be :11
OR you can see the image below


No comments :

Post a Comment