2008-01-21
2,407 reads
2008-01-21
2,407 reads
2008-01-18
2,183 reads
2008-01-15
3,426 reads
2008-01-14
3,164 reads
2008-01-11
2,501 reads
2008-01-10
2,450 reads
2008-01-09
4,078 reads
2008-01-08
2,666 reads
2008-01-07
3,901 reads
2008-01-04
2,838 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