2009-01-27
3,151 reads
2009-01-27
3,151 reads
2009-01-15
2,976 reads
2008-10-16
2,251 reads
2008-08-08
3,470 reads
2008-07-10
2,700 reads
2008-06-16
3,426 reads
2008-06-13
5,441 reads
2008-04-14
3,033 reads
2008-04-11
5,061 reads
2008-02-15
3,481 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