Chapter Contents

Previous

Next
SAS/CONNECT User's Guide

Example 1. DTS: Transferring Data by Using WHERE Statements


Purpose

The UPLOAD and DOWNLOAD procedures process WHERE statements and the WHERE= data set option when you transfer a single SAS data set. The transferred data set contains only the observations that meet the WHERE condition.


Program

proc upload data=school out=kindergarten;
   where class='K';
run;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.