I need to create a SQL Server table.
This table will have 4 columns.
One of these columns, colour, will have to be with 3 parameters (HSL).
It should look like this:

Any idea how can I implement this?
Thank you in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To make your table normalized you have to move these three values(
H,S,L) into a new Table, something likeHSLValues. With a foreign key to theUIDcolumn. then this created table should look something like:HSLValues:IdHValueSValueLValueUIDForeign key references firsttable(UID).