Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Friday, January 21, 2011

How to select all duplicate records from a table

select Col, count(Col) from TableName group by field having count(*) > 1

No comments :

Post a Comment