I would like to use SAS Proc SQL to find me row in a table in which every column has a non-missing value. Is there a way to do this without having to list all of the column names? This did not work, but it might give you an idea of what my intended output is.
Proc SQL;
Select *
from work.table
Where * is not null;
Run;
I would also like to limit the results to one observation if possible. Thanks.