2008-02-12
3,245 reads
2008-02-12
3,245 reads
2008-02-11
3,523 reads
2008-02-08
2,498 reads
2008-02-07
2,719 reads
2008-02-06
2,211 reads
2008-02-04
2,866 reads
2008-02-01
2,503 reads
2008-01-30
3,306 reads
2008-01-25
2,560 reads
2008-01-23
3,110 reads
By Steve Jones
This is my last week of the year working (I guess I come back...
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...
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