Introduction of SQL server
                                Install SQL Server And SQL Server Management Studio
                                Create, Rename, and Delete Database
                                Create, Delete and rename table in SQL server database
                                Add, Rename And Delete column name
                                Records insert, update & delete
                                Select statement
                                Select Unique and Distinct statement
                                Select into statement
                                Insert, update and delete statement
                                Aggregate function count, max, min, sum, avg
                                What are SQL Joins
                                Introduction to Group by Clause
                                Introduction to Having Clause
                                Introduction to Order by clause
                                Introduction to Where clause
                                AND & OR Operator
                                Arithmetic Operator
                                Between Operator
                                Comparison Operator
                                While loop
                                Break and continue statement
                                Introduction to Stored Procedures
                                Select Statement Inside the Stored procedure
                                Insert Statement Inside a Stored Procedure
                                Update Statement within the Stored Procedure
                                Input Parameters in a Stored Procedures
                                Output Parameters in a Stored Procedure
                                Return Values in a Stored Procedure
                                Insert Stored Procedure output into Temporary Table
                                Introduction to function
                                Introduction to SQL View
                                Useful System Stored Procedures
                    
                
Select into statement is responsible to create table if table is not present and then we stored the data from another table which field we create we can create specific column for the created table.
Filed name must be same as old table. Now given bellow the code and explain the code:
select [Name],[Email] into [crud].[dbo].[TestSelectInto] from [dbo].[Teacher]
/*select Table*/
select * from [dbo].[TestSelectInto]
first, we create new table name as TestSelectInto then we stored date from Teacher then we show the TestSelectInto table.