I’m pretty sure it actually exists haha
But in sql it is a field and inside it has data1,data2,data3 and so on. Like an array inside a field. Any idea?
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.
As said befor. No such type.
And you should not keep comma separated values in a field. Instead create another table for the the id-value pairs.
Lets say you have a blog, where you use an
Articlestable. Each article can have multipleTags. Instead of keeping all the tags for said article in single field as comma separated values, you should have table structure like this:In addition
ArticleTagstable would have a composite primary key, made from both article and tag ids –PRIMARY KEY( article_id , tag_id ).