Can a mysql database store arrays any way? I want to create an ever-growing history of value x but I don't particularly want hundreds of addtional fields. What is the data type? Is it the ENUM type? If so, is the data in it accessed like a php array?
I tried to use SET and ENUM, but it returned error 1064: Syntax error, apparently near the end. I used the following syntax:
ALTER TABLE tblcomp CHANGE SaleHistory SaleHistory ENUM NOT NULL
Error: 1064 - You have an error in your SQL syntax near 'NOT NULL' at line 1
I also tried without Not Null, putting some data in. Same result. I'm using MySQLfront, BTW...