Random thoughts and musings. Part of an oliology.

oliology.diary

Dienstag, Januar 20, 2004

SQL fun
Spaß mit SQL

Yesterday, I struggeld with an SQL problem: I had a table with site visitors (or customers) and wanted to know whether there were any duplicate emails addresses stored, e.g. whether any email address appeared more than once in the email column. This query extracts these addresses and the number of occurences:

SELECT email, COUNT(email) AS numbers FROM visitors
  GROUP BY email HAVING numbers > 1;

Gestern habe ich mich mit einem SQL-Problem rumgeschlagen: Ich hatte eine Tabelle mit Site-Besuchern (oder Kunden) und wollte wissen, ob ich manche Mailadressen doppelt gespeichert hatte, also ob eine Mailadresse mehr als einmal in der email-Spalte auftauchte. Die folgende SQL-Anfrage sucht die betroffenen Adressen und die Anzahl der Einträge heraus:

SELECT email, COUNT(email) AS numbers FROM visitors
  GROUP BY email HAVING numbers > 1;

Oliver @ 14:48 | Permalink | 0 comments/Kommentare

|

Good people

Good Software

Archive