When I am applying the styling on the following code:
SELECT name,
object_id,
principal_id,
schema_id,
parent_object_id,
type,
type_desc,
create_date,
modify_date INTO #tmp FROM sys.objects ORDER BY name
And the result is:
SELECT
name,
object_id,
principal_id,
schema_id,
parent_object_id,
type,
type_desc,
create_date,
modify_date INTO #tmp
FROM
sys.objects
ORDER BY
name
But I was excepting the following:
SELECT
name,
object_id,
principal_id,
schema_id,
parent_object_id,
type,
type_desc,
create_date,
modify_date
INTO
#tmp
FROM
sys.objects
ORDER BY
name
How can I do this?
And the result is:
But I was excepting the following:
How can I do this?