Untitled

 avatar
unknown
plain_text
2 years ago
203 B
23
Indexable
SELECT first_name,
       last_name,
       CASE WHEN instituition IS NULL THEN ''
            ELSE instituition
       END AS instituition
FROM people AS p
LEFT JOIN education AS e ON p.id = e.id;
Editor is loading...