Jul 29, 2020 3:43 am
Consider any two numbers and add. how can I get it in using the function.
1 Reply
Jul 29, 2020 7:05 am
Hi,
You can write a simple function something like below.
Create Function AddTwoNumbers
(
@Int1 as Int
@Int2 as Int
)
Return Int
As
Begin
Return (@Int1+@Int2)
End
let me know in case of any queries.