I created a table "Prices"
with a column named after the current time. I am trying to enter 679.09 into the Prices
table where the column name is 1460217349.29.
INSERT INTO Prices('1460217349.29') VALUES (678.09);
I looked at w3 schools and I think this is the right syntax but I am getting syntax error missing SELECT
.Any advice? This seems pretty straight forward.
Edit: It appears that using a decimal number requires a backtick. I did not ask about backticks but that seems to be the answer.