将逗号分隔数据重写为结构化数据
我有一个由标题类别和子类别
组成的表格,在每个类别的子类别标题中,我有一个以逗号分隔的子类别列表。
我会就像将数据重写到新表中,以便逗号分隔的子类别与前一列中的相应类别位于不同的行中。
如果有人对如何解决这个问题有任何想法,我将非常感激。
I have a table which consists of the headings Category and Subcategories
Within the subcategories heading for each category I have a comma separated list of subcategories.
I would like to rewrite the data to a new table so that the comma separated subcategories are in separate rows with the corresponding category in the previous column.
If anyone has any ideas on how to go about this I would be very grateful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种想法是输出数据,然后使用 PHP 的explode 等函数来解析它并将其插入到新表中。
One idea is to output your data then use a function like PHP's explode to parse it and insert it into your new table.