Created
February 22, 2021 08:12
-
-
Save kanghyojun/6c5d412cca86c823e96a3cbe0ff2fc4e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
c.name, | |
o.price | |
FROM customer AS c | |
JOIN order AS o ON o.customer_id = c.id | |
WHERE | |
o.price > [가격] | |
ORDER BY o.price DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment