Size: 374
Comment:
|
Size: 401
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 9: | Line 9: |
=== Tip 1 === | === Using substring and a sub select === |
CategoryComputingTips > SQLCompTips
SQL Tips
This is more a collection of recipes than tips I guess.
Using substring and a sub select
SELECT COUNT(substring),substring FROM ( SELECT SUBSTRING(domainname FROM POSITION('.' in domainname)) FROM orders WHERE type=1) AS foo GROUP BY substring;
Group and count domain extensions.