StackOverflow 文档 sas 教程 Proc SQL 基于现有数据集创建空数据集 基于现有数据集创建空数据集 Created: November-22, 2018 方法 1: placeholderCopyproc sql; create table foo like sashelp.class; quit;方法 2: placeholderCopyproc sql; create table bar as select * from sashelp.class (obs=0); quit;方法 1 应该是首选方案 SELECT 语法Proc SQL