Skip to content

Instantly share code, notes, and snippets.

@FCO

FCO/p-extra.sql Secret

Last active December 15, 2018 23:59
Embed
What would you like to do?
SELECT
CASE
WHEN (email == '' OR email IS NULL) THEN name
ELSE name || ' => ' || email
END
as "data"
FROM
person
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment