gogul Commented 2 Months ago through
Ask
Hi,
IF OBJECT_ID('Table1','U') IS NOT NULL BEGIN
DROP TABLE Table1
END
GO
CREATE TABLE [dbo].[Table1](
[ID] [int] IDENTITY(1,1) NOT NULL,
[t1] [int] NULL,
[t2] [int] NULL,
[t3] [int] NULL,
[t4] [int] NULL,
[t5] ...