Skip to content

Instantly share code, notes, and snippets.

@zachjharris
Last active June 8, 2020 13:31
Show Gist options
  • Save zachjharris/66f7741d478575d420137b672a201c01 to your computer and use it in GitHub Desktop.
Save zachjharris/66f7741d478575d420137b672a201c01 to your computer and use it in GitHub Desktop.
Table for storing scanned surveys
CREATE TABLE surveys (
[id] int not null identity,
[first_name] nvarchar(255),
[last_name] nvarchar(255),
[division] nvarchar(255),
[datetime] datetime,
[ryg_status] nvarchar(255),
[employee_id] nvarchar(255),
[badge_number] nvarchar(255),
[employee_type] nvarchar(255),
[access_code] nvarchar(255),
[scanned_datetime] datetime,
PRIMARY KEY( [id] )
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment