Which SELECT statement will display the style, color, and lot_no for all cars based on model?

A. Select style, color, lot_no
From auto
Where model = upper('&model');

B. Select style, color, lot_no
From auto
Where model = '&model';

Thank you.