Reading performance & plans
Exercise · SQL & Querying

Predict, then run it

Predict the output

tele(cust, plan, city) — a one-column question (the city of pro-plan customers). Name just the column so a columnar scan projects only it:

SELECT city FROM tele WHERE plan = 'pro';

Predict the exact output.