The SQL Server SELECT statement includes an INTO clause which is used to create a table object based on the resultset of the query. The table created by the INTO clause can be a session-level temporary table, a global temporary table, or a user defined table. The fields in the newly created table will be listed in the order in which they appear in the SELECT list, and will be of the same data type as the base table from the query or as defined by the SELECT statement. In the following statement,...