Comments
Sort by recent activity
Was this ever added, currently on SQL prompt 9.
I want to right align my table aliases. Currently I can only left align them in the style editor.
See example below of what I want; SELECT *
FROM dbo.user_account ua
JOIN dbo.user_account_status uas ON uas.user_account_status_id = ua.user_account_status_id
WHERE ua.user_account_id = CASE
WHEN 1 = 1 THEN 1
ELSE 2
END
Below is what I have available to me at the moment; SELECT *
FROM dbo.user_account ua
JOIN dbo.user_account_status uas ON uas.user_account_status_id = ua.user_account_status_id
WHERE ua.user_account_id = CASE
WHEN 1 = 1 THEN 1
ELSE 2
END
Its the last thing in my style guide that is not correct I was so close! / comments
Was this ever added, currently on SQL prompt 9.
I want to right align my table aliases. Currently I can only left align them in the style editor.
See example below of what I want;SELECT *
FROM db...