如果在 where 子句中我们有其他值是什么意思
what is the meaning if in where clause we have an other value
WHERE ("z" = 'abc')) "测试"
您需要显示整个查询,但 "test"
不是 where
子句的一部分。它看起来像 table 别名或列别名。例如:
select "test".*
from (select t.*
from t
where ("z" = 'abc')
) "test"
我不建议转义列别名或 table 别名,但您的代码似乎正在这样做。
WHERE ("z" = 'abc')) "测试"
您需要显示整个查询,但 "test"
不是 where
子句的一部分。它看起来像 table 别名或列别名。例如:
select "test".*
from (select t.*
from t
where ("z" = 'abc')
) "test"
我不建议转义列别名或 table 别名,但您的代码似乎正在这样做。