How can we help you today? How can we help you today?

First Line placement in Order By clause

When I lay out:
SELECT    ContactID, FirstName, LastName, Phone
FROM      Person.Contact
ORDER BY  ContactID

It does this:
SELECT     ContactID
               , FirstName
               , LastName
               , Phone
FROM         Person.Contact
ORDER BY
                 ContactID

The ORDER BY clause should follow the Column Placement; First column placement; On a new line rules, or it should have it's own setting
drsql
0

Comments

1 comment

  • Andras B
    drsql wrote:
    When I lay out:
    ...

    The ORDER BY clause should follow the Column Placement; First column placement; On a new line rules, or it should have it's own setting

    This is a valid observation, and we will look into it Many thanks for reporting this.

    Andras
    Andras B
    0

Add comment

Please sign in to leave a comment.