2018-11-30
878 reads
2018-11-30
878 reads
2018-06-13
894 reads
2018-03-19
812 reads
2016-01-22
1,251 reads
2015-12-21
1,689 reads
2015-09-18
1,211 reads
2011-06-01
2,356 reads
2011-02-24
2,168 reads
2011-01-31
2,294 reads
2009-07-03
5,236 reads
By Steve Jones
This is my last week of the year working (I guess I come back...
Want to seriously boost your data skills? Mastering advanced SQL is the key, whether...
By Steve Jones
This is my last week of the year working (I guess I come back...
Comments posted to this topic are about the item Function Defaults
Comments posted to this topic are about the item Big Data or Small Data
I have created this function in SQL Server 2022:
CREATE FUNCTION dbo.AddInt (@one INT, @two INT = 1) RETURNS INT AS BEGIN RETURN @one + @two ENDHow can I call this and invoke the default value for @two? See possible answers