Reputation: 6446
I'm Converting some Proc Sql statements to t-sql. I have one that looks like
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
What does the "." in the above code mean? What column does it select?
Upvotes: 1
Views: 256
Reputation: 21274
In SAS a period denotes a numeric missing value. This essentially sets your column to missing everywhere.
Upvotes: 2