如何按保留字的列名排序?例如:
select * from some_table t1 order by t1.mode;
mode
是我们的保留字。它无法更改,而且我需要 select 与 identifier 一起使用t1
。到目前为止,我已经尝试过:
order by t1."mode", "t1.mode", t1.'mode', 't1.mode'
没有任何运气
如何按保留字的列名排序?例如:
select * from some_table t1 order by t1.mode;
mode
是我们的保留字。它无法更改,而且我需要 select 与 identifier 一起使用t1
。到目前为止,我已经尝试过:
order by t1."mode", "t1.mode", t1.'mode', 't1.mode'
没有任何运气