initial population of repo

This commit is contained in:
Thierry Schork
2022-12-30 10:37:11 +01:00
parent 969dc57be1
commit 5d7658d85f
72 changed files with 488 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"id": "ba5eb4fd-ac8f-427c-a24a-5cb97b8faa98",
"prefix": "nbr",
"description": "variable table with 10 rows, for cross join population",
"body": "DECLARE @nbr TABLE (\r\n\tval INT\r\n);\r\nINSERT INTO @nbr(val)\r\nVALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(0);\r\n"
}