I am trying to play around with Hypertable on my windows pc's command prompt. I am able to create a table and insert the values
CREATE TABLE fruits (color, energy, vitamins);
INSERT INTO fruits VALUES ("apple", "color", "red"),
("apple", "energy", "207KJ"),
("apple", "vitamins:C", "15mg);
However when I attempt to alter/change the value of 15mg to 13mg, I couldn't find resources online that works to alter my values in my table. Can anyone be so kind as to help out?
ALTER TABLE fruits MODIFY (vitamins) ...
That's all I've got.