|
don't worry about auto increment id numbers, the database holds the last ID used separately to the data. So even deleting the last record added won't cause a problem.
If you don't need them, delete them.
SELECT DISTINCT fieldlist works across ALL the fields, so every column in the row will have to be identical for the record to be excluded.
Use the GROUP BY query to compress the duplicate records
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
|