迷茫2017-04-17 15:38:18
因为mysql底层跑SQL语句时:where 后的筛选条件在先, as B的别名在后。
所以机器看到where 后的别名是不认的,所以会报说B不存在。
如果非要用B做筛选条件的话:
解决方案:外边再嵌套一层。
select * from
(
select A as B from table
) t
where t.B = XXX -- 任意的筛选条件
如果不嵌套,只能用A做筛选条件了
巴扎黑2017-04-17 15:38:18
select t.b from
(
select a as B from table
) t
where t.b =xxxx
此时的B是可以直接在where中使用的