摘要:
9.创建索引 创建索引时,索引的名字必须与表中所建索引的列名相同。另外,当索引唯一时,加入关键字unique。可以在多个列上创建复合索引(composite index)。 创建索引格式如下 CREATE INDEX index-name ON table-name(column-name,... 阅读全文
2008年8月22日
摘要:
4.子查询 例如 proc sql; Select LastName, FirstName From work.fa Where not exists (select * from airline.flightschedule where fa.EmpID= flightsche... 阅读全文
摘要:
1.普通查询 查询语句如下: SELECT column… FROM table/view …. …> …> 例如 Proc sql; Validate Select EmployeeNumber, JobCode, Salary From airline.payrol_... 阅读全文
摘要:
SAS中的SQL过程或许是最强大的数据操作工具。以下是关于SQL过程的一些资源。 A nice SAS SQL basics notes with examples Top 10 SAS SQL examples: http://www2.sas.com/proceedings/sugi29/04... 阅读全文