|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Check for double records
Hi,
I want to find out if I have got double records (same value in column "headline") in my table. I there a easy query or do I have to work with temp.tables and store procs? regards. Raggi |
|
#2
|
||||
|
||||
|
Code:
SELECT headline FROM TableName GROUP BY headline HAVING COUNT(headline) > 1 |
|
#3
|
|||
|
|||
|
cool, that works
![]() Thanks for fast reply! |
![]() |
| Viewing: ASP Free Forums > Database > Microsoft SQL Server > Check for double records |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|