SQL Basics Using Proc SQL

FROM table-name; When you select individual columns from a table, you must comma-delimit your SELECT statement’s column name list. The shortcut to select all columns from a table is to write an asterisk, following the SELECT statement. In the example below, all columns from the table SASHELP.CLASS will be written to the SAS output ................
................