DEV Community

Kaziu
Kaziu

Posted on β€’ Edited on

4 2

πŸ€Ήβ€β™€οΈ SELECT ORDER [SQL]

  • Why can't use SUM() in WHERE?
  • Why can't use AS in WHERE or GROUP BY?

😎 You will get the reason why it is like that

πŸ’Ž Select order

When you see this SQL, what do you think about order?

SELECT * FROM clients 
WHERE    age >= 30
GROUP BY usa
HAVING   salary > 1000
ORDER BY id desc
LIMIT    100
Enter fullscreen mode Exit fullscreen mode

Seems like sql executes from SELECT ?
actually it's not true

-- SQL executes in this order
FROM
|
WHERE
|
GROUP BY 
|
HAVING
|
SELECT
|
ORDER BY
|
LIMIT
Enter fullscreen mode Exit fullscreen mode

πŸ’Ž Question 1

Why SUM() function can't use in WHERE?

FROM
|
WHERE πŸ‘ˆ πŸ‘ˆ
|
GROUP BY πŸ‘ˆ πŸ‘ˆ
|
HAVING
|
SELECT
|
ORDER BY
|
LIMIT
Enter fullscreen mode Exit fullscreen mode

Before WHERE executes, GROUP BY has not executed yet, so we can't use COUNT() SUM() in WHERE.

In other word, it's possible to use these functions in HAVING.

πŸ’Ž Question 2

Why can't use AS in WHERE or GROUP BY? Even though in ORDER BY can use it, unfair!!

FROM
|
WHERE πŸ‘ˆ πŸ‘ˆ
|
GROUP BY πŸ‘ˆ πŸ‘ˆ
|
HAVING
|
SELECT πŸ‘ˆ πŸ‘ˆ
|
ORDER BY πŸ‘€ πŸ‘€ 
|
LIMIT
Enter fullscreen mode Exit fullscreen mode

take it easy, man. Because ORDER BY executes after SELECT.
You can't read name which is created by "AS" before define it.

Thank you for reading πŸ€—

API Trace View

Struggling with slow API calls?

Dan Mindru walks through how he used Sentry's new Trace View feature to shave off 22.3 seconds from an API call.

Get a practical walkthrough of how to identify bottlenecks, split tasks into multiple parallel tasks, identify slow AI model calls, and more.

Read more β†’

Top comments (0)

πŸ‘‹ Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay