blob: 878072158cfa57880c16475b85530f71e0fc6dc4 [file] [log] [blame]
select customer.fullname as c0, customer.gender as c1, customer.marital_status as c2, customer.education as c3, customer.yearly_income as c4 from customer as customer where (customer.city = 'Burbank' and customer.state_province = 'CA') and UPPER(customer.fullname) = UPPER('Alma Son') group by customer.fullname, customer.gender, customer.marital_status, customer.education, customer.yearly_income order by customer.fullname ASC NULLS LAST;