I need to save a CSS HEX color value ( #FFFFFF for example) into a mysql database.
#FFFFFF
What type of data would I use and why would it be better to use another?
save color with char(6) without # if the column is not null ... if the column is null, use varchar (6) to save the size
char(6)
#