Store CSS color values in DB

时间:2022-08-15 16:59:00

I need to store a CSS HEX color value (#FFFFFF for example) into a mysql database.

我需要将CSS HEX颜色值(例如#FFFFFF)存储到mysql数据库中。

Which type of data would I use and why it would be better over using another one?

我会使用哪种类型的数据以及为什么使用另一种数据会更好?

1 个解决方案

#1


12  

save the color with a char(6) without the # if the column is not null... if the column is nullable use a varchar(6) to saving size

如果列不为空,则使用不带#的char(6)保存颜色...如果列可以为空,请使用varchar(6)来保存大小

#1


12  

save the color with a char(6) without the # if the column is not null... if the column is nullable use a varchar(6) to saving size

如果列不为空,则使用不带#的char(6)保存颜色...如果列可以为空,请使用varchar(6)来保存大小