We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
having something like this:
CASE WHEN ... WHEN ... WHEN ... THEN ...
is not creating a line break after each WHEN command. right now its beiing displayed like this:
With a lot of CASEs, this is getting difficult.
The text was updated successfully, but these errors were encountered:
To be more precise, syntax is a bit different: https://www.techonthenet.com/oracle/functions/case.php https://www.techonthenet.com/sql_server/functions/case.php https://www.techonthenet.com/mysql/functions/case.php
For example:
SELECT plantname, CASE price WHEN 1 THEN 'Cheap' WHEN 2 THEN 'Expensive' ELSE 'Unknown' END FROM plant
Sorry, something went wrong.
No branches or pull requests
having something like this:
CASE
WHEN ...
WHEN ...
WHEN ...
THEN ...
is not creating a line break after each WHEN command. right now its beiing displayed like this:
CASE WHEN ... WHEN ... WHEN ... THEN ...
With a lot of CASEs, this is getting difficult.
The text was updated successfully, but these errors were encountered: