Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在 mysql 中有一个包含以下字段的表:
id int auto_increment, name varchar(50), role enum('M','I','E')
有没有一种方法可以将这些数据导出到 csv 但遵循字段属性,这意味着我无法将字段或行添加到 csv 表中,除非它们遵循这些属性(id 是自动递增的,并且角色是三个选项 M、I 和 E 之一)。