Commit e950bb5e authored by Hamaker, Alec's avatar Hamaker, Alec
Browse files

dropped table if it exists first, then created. Prevents reading duplicate entries.

parent ada9a8de
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,5 +2,7 @@ CREATE DATABASE CommonDB;
GO
USE CommonDB;
GO
DROP TABLE IF EXISTS TestDBTable;
GO
CREATE TABLE TestDBTable (TestTableID int, TestTableString nvarchar(max));
GO