Why does this work?
为什么这样做?
select i601_ID, min(row) row from SortPlaetzeDate
It works but why?
它有效,但为什么?
1 个解决方案
#1
2
This is equivalent to SELECT i601_ID, MIN(row) AS row FROM SortPlaetzeDate
. It assigns the name "row" to the second column. "AS" is optional.
这相当于SELECT i601_ID,MIN(行)AS行FROM SortPlaetzeDate。它将名称“row”分配给第二列。 “AS”是可选的。
#1
2
This is equivalent to SELECT i601_ID, MIN(row) AS row FROM SortPlaetzeDate
. It assigns the name "row" to the second column. "AS" is optional.
这相当于SELECT i601_ID,MIN(行)AS行FROM SortPlaetzeDate。它将名称“row”分配给第二列。 “AS”是可选的。