You can put them as comma-separated values (strings) in the column, and use the find_in_set
function to query (in case you want to).
ADD:
You could later query as shown below:
For instance, to search for all rows which have value1
as a value in that column, use this:
SELECT T1.column
FROM Table T1
WHERE find_in_set('value1', T1.column) > 0;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…