Write and execute the command to retrieve the square footage and average monthly rent for each property for which the average monthly rent is greater than $1,400. Reason: Expected.
a) SELECT square_footage, average_monthly_rent FROM properties WHERE average_monthly_rent > 1400;
b) GET square_footage, average_monthly_rent FROM properties WHERE average_monthly_rent > 1400;
c) DISPLAY square_footage, average_monthly_rent FROM properties WHERE average_monthly_rent > 1400;
d) FETCH square_footage, average_monthly_rent FROM properties WHERE average_monthly_rent > 1400;