字段A-字段B C,写条件时where c>0,为什么说c无效,该怎么写
where 字段A-字段B>0因为C是你重命名
select t.* from (
select a-b as c from 表名称
) t
where t.c>0