i have a table with the following structure
CREATE TABLE [dbo].[dbtable] (
[DBkey] [int] NOT NULL ,
[nvarchar] (50) ,
[Name] [nvarchar] (100) ,
[Keywords] [nvarchar] (255) ,
[About] [nvarchar] (255) ,
[Url] [nvarchar] (100) ,
[Region] [int] NULL ,
[Done] [bit] NULL
) ON [PRIMARY]
GO
DBKey is a primary field.
i was wondering how i would get rid of duplicates. i figured that it would be to hard to get rid of duplicates in the 'keywords' field so the 'url' would be the most appropriate
i hope you can help!
CREATE TABLE [dbo].[dbtable] (
[DBkey] [int] NOT NULL ,
[nvarchar] (50) ,
[Name] [nvarchar] (100) ,
[Keywords] [nvarchar] (255) ,
[About] [nvarchar] (255) ,
[Url] [nvarchar] (100) ,
[Region] [int] NULL ,
[Done] [bit] NULL
) ON [PRIMARY]
GO
DBKey is a primary field.
i was wondering how i would get rid of duplicates. i figured that it would be to hard to get rid of duplicates in the 'keywords' field so the 'url' would be the most appropriate
i hope you can help!