What is the SAS version of "select from dual
"? I want to create a table using Proc SQL
without selecting from excisting tables. for instance. Basically I want something like:
PROC SQL;
CREATE TABLE tmptable AS
SELECT 1 AS myvar FROM dual;
QUIT;
This does not work. What choices do I have?