什么地方可以使用别名,什么地方不能使用?
MySQL:
where 后面不可以使用别名,在 group by ,roder by ,having 后面可以使用别名。
having 后面使用别名只在MySQL中适用。
Oracle:
group by having where 后面不能使用别名,在order by 后面可以使用别名。
什么地方可以使用别名,什么地方不能使用?
where 后面不可以使用别名,在 group by ,roder by ,having 后面可以使用别名。
having 后面使用别名只在MySQL中适用。
group by having where 后面不能使用别名,在order by 后面可以使用别名。