Вы выбрали два отдельных набора, а затем объединили их вместо простого объединения.Именно это приводит к дублированию строк.
Вы пытались удалить ключевое слово outer
?Вот пример использования данных SASHELP.CLASS.
23 proc sql ;
24 create table test1 as
25 select * from sashelp.class where name like 'A%'
26 union corr
27 select * from sashelp.class where sex = 'F'
28 ;
NOTE: Table WORK.TEST1 created, with 10 rows and 5 columns.
29 create table test2 as
30 select * from sashelp.class where name like 'A%'
31 outer union corr
32 select * from sashelp.class where sex = 'F'
33 ;
NOTE: Table WORK.TEST2 created, with 11 rows and 5 columns.
Или создание подзапроса?
45
46 create table test3 as
47 select distinct * from
48 (
49 select * from sashelp.class where name like 'A%'
50 outer union corr
51 select * from sashelp.class where sex = 'F'
52 )
53 ;
NOTE: Table WORK.TEST3 created, with 10 rows and 5 columns.