Create Function Fn_ToplamaYap(@sayi1 int,@sayi2 int) Returns int As Begin Declare @toplam int Set @toplam = @sayi1+ @sayi2 return @toplam End