I have the following table:
CREATE TABLE NoteTest
(
[ItemId] [int](10) NULL,
[Note] [nchar](10) NULL
)
Each ItemId should only have one note row in the table. But for some items, multiple rows with identical notes were entered.
I need SQL to go through the NoteTest table and identify identical, duplicate text in the Note column for each ID in the table.
CREATE TABLE NoteTest
(
[ItemId] [int](10) NULL,
[Note] [nchar](10) NULL
)
Each ItemId should only have one note row in the table. But for some items, multiple rows with identical notes were entered.
I need SQL to go through the NoteTest table and identify identical, duplicate text in the Note column for each ID in the table.