2015-07-16
1,506 reads
2015-07-16
1,506 reads
2013-07-19
2,682 reads
2012-06-18
2,094 reads
2012-06-11
1,891 reads
2012-06-04
2,073 reads
2012-05-28
2,157 reads
2012-05-21
2,072 reads
2012-04-27
1,959 reads
2012-04-18
2,248 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