First you have to create Split function.
After that you have to create CreateTableAtRuntime Store Proc
EXEC CreateTableAtRuntime 3,'Student','ID;Name;Address', 'INT Identity(1,1);
the it will be show output as:
IF EXISTS (
SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID('Student')
AND type IN (N'U')
)
DROP TABLE [dbo].[Student]
GO
CREATE TABLE Student (
ID INT IDENTITY(1, 1)
,NAME CHAR(100)
,Address CHAR(200)
) ON [PRIMARY]