如何从 SQL 服务器中的另一个 table select "Group" 列名?

How to select "Group" column name from another table in an SQL Server?

组是 table 之一中的列。 我正在使用以下查询。由于 Group 是保留关键字,执行以下查询时出错:

select o.group as group,
 p.id as id 
from
product p left join org o on p.id=o.id

谁能指导一下?

常规SQL服务器方式:

select o.[group] as [group],

并且 SQL 服务器也支持 ANSI SQL 方式(可能需要一些设置?)

select o."group" as "group",