Just wondering, can someone point me in the right direction to store multiple attributes and their values ββin SQL?
Say I have a first name, first name, last name, company, Twitter, Facebook, etc. with a lot of attributes that may be added in the future.
There are several methods that have crossed my mind, one is to save all the answers in one column, all the answers in another, as a result of decoupling and storing them as the name Firstname ||| Surname ||| Company etc. Or do I have much experience with them other than bitwise operators?
Just looking for the best / most effective solution is valid if someone can give me an idea and perhaps an example that would be great.
Cheers, Christian
source
share