If you really want to use an alias, for example, if your request is rather complicated and you want to format it better, you can do it in 2 steps using CTE:
with _data as ( select * from Employee for system_time all where Id=15 ) select * from _data as d
OR
with _data as ( select * from Employee for system_time all ) select * from _data as d where d.Id=15
source share