/* Navicat SQL Server Data Transfer Source Server : 9000 Source Server Version : 105000 Source Host : .\sqlexpress:1433 Source Database : LHBMS Source Schema : dbo Target Server Type : SQL Server Target Server Version : 105000 File Encoding : 65001 Date: 2021-05-11 15:33:19 */ -- ---------------------------- -- Table structure for Map -- ---------------------------- DROP TABLE [dbo].[Map] GO CREATE TABLE [dbo].[Map] ( [ID] uniqueidentifier NOT NULL DEFAULT (newid()) ROWGUIDCOL , [Name] nvarchar(50) NOT NULL , [FileName] nvarchar(200) NULL , [Remark] nvarchar(100) NULL , [imgData] image NULL ) GO -- ---------------------------- -- Records of Map -- ---------------------------- -- ---------------------------- -- Indexes structure for table Map -- ---------------------------- -- ---------------------------- -- Primary Key structure for table Map -- ---------------------------- ALTER TABLE [dbo].[Map] ADD PRIMARY KEY ([ID]) GO