SELECT DISTINCT a,b FROM table JOIN other_table USING(a) ORDER BY other_table.c DESC;
becomes
SELECT a,b FROM (SELECT DISTINCT a,b,c FROM table JOIN other_table USING(a) ORDER BY other_table.c DESC) AS V;
I did find this friend while looking through old notebooks to try and remember something. |
- An interesting idea.
- Marvel doing something correctly.
- An interesting twitter thread about comic panel layout.
- There's a reason I'm a fan of Team Rocket.
No comments:
Post a Comment