Untitled
user_4802292
plain_text
2 years ago
335 B
101
Indexable
USE [master] GO /****** Object: Table [dbo].[_Stat] Script Date: 7/27/2023 4:41:45 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[_Stat]( [ID] [int] IDENTITY(1,1) NOT NULL, [Serial] [bigint] NULL, [Description] [nvarchar](128) NULL, [Value] [int] NULL ) ON [PRIMARY] GO
Editor is loading...