简体   繁体   中英

Select a column with special characters in TSQL?

How to select a column with special characters in T-SQL?

I tried with

select Sub-Department from Table1 

select [Sub-Department] from Table1 

select [Sub-Department] from [Table1 ]

select (Sub-Department) from Table1 

select 'Sub-Department' from Table1 

select "Sub-Department" from Table1

but still nothing worked

This is SQL in azure data bricks platform which utilizes T-SQL.

SQL:

在这里检查错误

Use backtick to contain "Sub-department", something like this

select `Sub-Department` from Table1 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM