Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint
Share this Page URL
Help

Appendix 1: Quiz Answer Keys > Chapter 4: Combining Tables Vertically Using PRO... - Pg. 922

full join table2 as b on a.g3 = b.g3 order by 1; proc sql; title 'Merged'; select g3, z, r from table1 as a full join table2 as b on a.g3 = b.g3 order by 1;