Dynamic SQL Crossword
This crossword is based on terms you might come across in an article about Dynamic SQL.
2018-08-08
604 reads
This crossword is based on terms you might come across in an article about Dynamic SQL.
2018-08-08
604 reads
This crossword puzzle is based on the contents of the Stairway to AlwaysOn.
2018-07-11
155 reads
This crossword puzzle is based on the contents of the Stairway to Advanced T-SQL.
2018-04-25
285 reads
2018-03-07
493 reads
2018-02-07
270 reads
2018-01-10
228 reads
2017-11-29
169 reads
2017-11-15
428 reads
2017-10-25
351 reads
2017-09-27
200 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
Comments posted to this topic are about the item Level 4 of the Stairway...
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