Options

Format options for "with" keyword

dandrosdandros Posts: 2
edited March 7, 2016 4:54AM in SQL Prompt
Hi,

Is there a way to configure formatting style for CTE "with" keyword and related query as shown in example below ?

with  
  _ATTRIBUTE as 
  ( select
      role_id ,
      count(role_id) attribute_count
    from
      roles.role_attribute_role
    group by
      role_id )
select
  r.id ,
  r.workflow_id ,
  r.name ,
  r.label ,
  r.short_text ,
  r.is_generic ,
  _ATTRIBUTE.attribute_count
from
  roles.[role] r
  left join _ATTRIBUTE on _ATTRIBUTE.role_id = r.id;


Thanks !

Comments

  • Options
    Hi dandros,

    There isn't an option to change this in the current version of SQL Prompt. We're currently making a new formatting system that is designed to be much more flexible. We're still taking suggestions for formatting styles through this survey, so please do fill this out as many times as you like with how you like your SQL to be formatted. We're also using this survey to keep all of the suggestions in one place.

    Best regards,

    David
Sign In or Register to comment.