hi,
SELECT * FROM tabelle WHERE eintrag LIKE '%.%';
würde das gleiche ergebnis liefern wie
SELECT * FROM tabelle WHERE eintrag LIKE '%.%.%';
oder wie
SELECT * FROM tabelle WHERE eintrag LIKE '%.%.%.%';
gruß
norman
Hi Norman,
ohne Garantie:
SELECT * FROM tabelle WHERE eintrag LIKE '%.%'; -> Für 1 Punkt
SELECT * FROM tabelle WHERE eintrag LIKE '%.%.%'; -> Für 2 PunkteBye
Patrick