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