A nested table is one table placed inside of another, where the larger table functions as a container for the smaller one. Nested tables are a way for you to organize objects, such as images or text, ...
To illustrate, consider the SAS table WORK.EMPLOYEES, created with the following DATA step program: data employees; input fname $ 1-9 lname $ 10-18 position $ 19-28 salary 29-34; datalines; Walter ...