Skip to content

Instantly share code, notes, and snippets.

@ktaranov
Last active September 8, 2022 12:47
Show Gist options
  • Save ktaranov/b4466f14a13a393967eaaf85e6b15209 to your computer and use it in GitHub Desktop.
Save ktaranov/b4466f14a13a393967eaaf85e6b15209 to your computer and use it in GitHub Desktop.

Revisions

  1. ktaranov revised this gist Nov 14, 2019. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion Test_tsql_lingusit_syntax_highlighting.md
    Original file line number Diff line number Diff line change
    @@ -23,4 +23,7 @@ SELECT @nvcmaxVariable;

    ## Markwon Examples

    [`TRY_CONVERT`](https://docs.microsoft.com/en-us/sql/t-sql/functions/try-convert-transact-sql)
    [`TRY_CONVERT`](https://docs.microsoft.com/en-us/sql/t-sql/functions/try-convert-transact-sql)
    [`TRY_CONVERT`]

    [`TRY_CONVERT`]:https://docs.microsoft.com/en-us/sql/t-sql/functions/try-convert-transact-sql
  2. ktaranov revised this gist Nov 14, 2019. 1 changed file with 5 additions and 1 deletion.
    6 changes: 5 additions & 1 deletion Test_tsql_lingusit_syntax_highlighting.md
    Original file line number Diff line number Diff line change
    @@ -19,4 +19,8 @@ GO
    DECLARE @nvcmaxVariable nvarchar(max);
    SET @nvcmaxVariable = CONVERT(nvarchar(max), N'ಠ russian anomaly ЯЁЪ ಠ ') + N'something else' + N'another';
    SELECT @nvcmaxVariable;
    ```
    ```

    ## Markwon Examples

    [`TRY_CONVERT`](https://docs.microsoft.com/en-us/sql/t-sql/functions/try-convert-transact-sql)
  3. ktaranov revised this gist Oct 25, 2019. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions Test_tsql_lingusit_syntax_highlighting.md
    Original file line number Diff line number Diff line change
    @@ -13,6 +13,9 @@ SELECT @nvcmaxVariable;
    ## SQL Example

    ```sql
    USE master;
    GO

    DECLARE @nvcmaxVariable nvarchar(max);
    SET @nvcmaxVariable = CONVERT(nvarchar(max), N'ಠ russian anomaly ЯЁЪ ಠ ') + N'something else' + N'another';
    SELECT @nvcmaxVariable;
  4. ktaranov revised this gist Oct 25, 2019. 1 changed file with 19 additions and 0 deletions.
    19 changes: 19 additions & 0 deletions Test_tsql_lingusit_syntax_highlighting.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    ## TSQL Example

    ```tsql
    USE master;
    GO
    DECLARE @nvcmaxVariable nvarchar(max);
    SET @nvcmaxVariable = CONVERT(nvarchar(max), N'ಠ russian anomaly ЯЁЪ ಠ ') + N'something else' + N'another';
    SELECT @nvcmaxVariable;
    ```


    ## SQL Example

    ```sql
    DECLARE @nvcmaxVariable nvarchar(max);
    SET @nvcmaxVariable = CONVERT(nvarchar(max), N'ಠ russian anomaly ЯЁЪ ಠ ') + N'something else' + N'another';
    SELECT @nvcmaxVariable;
    ```
  5. ktaranov created this gist Oct 25, 2019.
    5 changes: 5 additions & 0 deletions Test_tsql_lingusit_syntax_highlighting.sql
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    USE master;
    GO

    DECLARE @nvcmaxVariable nvarchar(max);
    SET @nvcmaxVariable = CONVERT(nvarchar(max), N'russian anomaly ЯЁЪ') + N'something else' + N'another';