USE NewDB
SELECT * FROM DemoTable
GO
CREATE TABLE DemoTable2
(message varchar(30))
INSERT INTO DemoTable2 SELECT 'Created by NewUser2'
GO

