Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

In the code below, is SecondHighestSalary a column name or the name of a table? If it's the name of a table, is it a temp table or an alias, or something else?

select ( select distinct salary from employee order by salary desc 
offset 1 rows fetch next 1 rows only ) SecondHighestSalary;

Another example is below. What is e? Alias, table, column name, or something else?

select Max(Salary) as SecondHighestSalary from
(select Salary,
             rank() over (order by Salary desc) as 'rank' 
      from Employee
     ) e
where rank = 2
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
196 views
Welcome To Ask or Share your Answers For Others

1 Answer

"SecondHighestSalary" is a column name. "e" is a derived table name.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...