答案 0 :(得分:1)
我不了解这个问题。
如果你将选择列表的每个条目分成单独的行,这会有所帮助,我喜欢这样做,所以逗号位于行的开头,如下所示:
SELECT
s.id AS StudentID -- this column alias "StudentID" works
, s.lastName -- no alias needed here
, p.lastName -- but need alias here, where is the alias?
, AS Professor -- Ooops, comma in the wrong place
FROM ...
我假设您理解"列别名" 如果没有尝试SQL - Alias Syntax
答案 1 :(得分:0)
您需要删除第3行的p.lastname之后的逗号。