Similar to Column names with line breaks but with SQL Server rather than PostgreSQL.
I have to read a column from a table that has a column with a line break. ie:
SELECT
[Column
Name]
FROM [dbo].[TableName]
I'm unable to change this schema.
The tool which I'm using to query SQL Server also only allows a single line for a query, so I'm unable to do the exact query above.
How can I write this SELECT query in one line?