Error:1064, (“You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near

What should I change? This is my statement:

sql = "SELECT 'housing_median_age', 'median_income' FROM 'california_housing_test' WHERE 'population' = 850"
cur.execute(sql)
result = cur.fetchall()
print(result)
Back To Top