如何使用视图本身不存在的列对视图进行排序! 但存在于数据库中?
您可以按子查询的结果进行排序:
select v.*
from view v
order by (select t.<whatver> from t where t.id = v.id);
或者,您可以使用显式join
将列引入。