summaryrefslogtreecommitdiff
path: root/graphs/sql/battle_plan/req02.sql
blob: a9d8e9b4e9bc1b5c481bb7a2869a604114822902 (plain)
1
2
3
4
5
6
7
8
SELECT *
FROM (
    VALUES
    ('a', 2),
    ('b', 3),
    ('b', 4),
    ('c', 1)
) AS answers(question, choice);