• Microsoft SQL Server supports 2 types of commenting:

    1. Single line: by using double hyphen "--", like:

    -- this is a single line comment

    2. Multiline: /* */, like:

    /*

    This

    is

    a

    multiline

    comment

    */