在 SAS Proc SQL 中,“.”是什么意思?作为列名是什么意思?

In SAS Proc SQL what does a "." as a column name mean?

我正在将一些 Proc Sql 语句转换为 t-sql。我有一个看起来像

 Proc SQL
 Select 
  ... (extra lines of code here that select normal columns)
 . as NewColumnAlias,
  ... (more lines of code here that select normal columns)
 From $syslast
END

“.”是什么意思?上面的代码是什么意思?它在哪一栏 select?

在 SAS 中,句点表示 numeric missing value。这实质上将您的列设置为无处不在。