What collation variables take on in T-SQL
I was asked an interesting question about collations in sql server recently about where variables in a script got their...
2014-10-22
38 reads
I was asked an interesting question about collations in sql server recently about where variables in a script got their...
2014-10-22
38 reads
I was asked an interesting question about collations in sql server recently about where variables in a script got their...
2014-10-22
45 reads
I was asked an interesting question about collations in sql server recently about where variables in a script got their collation's from. I really wasn't too sure of the...
2014-10-22
3 reads
I have worked as a DBA and also as a Sql Server developer and in many roles had full access...
2014-10-21
36 reads
I have worked as a DBA and also as a Sql Server developer and in many roles had full access...
2014-10-21
38 reads
I have worked as a DBA and also as a Sql Server developer and in many roles had full access...
2014-10-21
12 reads
I have worked as a DBA and also as a Sql Server developer and in many roles had full access to production, it is OK though I know what...
2014-10-21
1 reads
I have moved my blog over to here, expect exciting posts about the things that interest me my previous blog...
2014-10-20
36 reads
I have moved my blog over to here, expect exciting posts about the things that interest me my previous blog...
2014-10-20
52 reads
I have moved my blog over to here, expect exciting posts about the things that interest me my previous blog was at: http://sqlserverfunctions.wordpress.com.
I hope you find something you enjoy...
2014-10-20
1 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