| Performing Queries Using SQL |
| Additional Features
|
You can use several other clauses within the SELECT statement
to further refine your query.
|
proc sql;
select custname as name, count(*)
from sql.customer
group by name
having count(*)=1;
|
| |
Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.