I created a table by two ways, the first was from the design view and the second through my first attemtp at a creat table statment in Query Analizer. The two scripts below are what SQL Studio generated to recreate each table. They look very simlare to me, can someone look the two over and tell me if there is really any difference I should care about or if it is just syntac? (Yes, I know somce column names and types are different)CREATE TABLE [dbo].[SectionInfo]( [ID] [smallint] IDENTITY(1,1) NOT NULL, [SectionTitle] [varchar](250) NOT NULL, [ShortName] [varchar](50) NOT NULL, [LinkName] [varchar](50) NOT NULL, [Synopsis] [varchar](max) NOT NULL, CONSTRAINT [PK_SectionInfo] PRIMARY KEY CLUSTERED ( [ID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [LinkName] UNIQUE NONCLUSTERED ( [LinkName] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]GO
CREATE TABLE [dbo].[SectionInfo]( [SectionID] [smallint] IDENTITY(0,1) NOT NULL, [SectionTitle] [varchar](250) NOT NULL, [ShortName] [varchar](50) NOT NULL, [LinkName] [varchar](50) NOT NULL, [Synopsis] [varchar](max) NOT NULL,PRIMARY KEY CLUSTERED ( [SectionID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],UNIQUE NONCLUSTERED ( [LinkName] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]
-- If I get used to envying others...Those things about my self I pride will slowly fade away.-Stellvia