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.
我们正在将数据从一个应用程序导出到另一个应用程序,并且在我们要摆脱的旧应用程序的 1 个字段中存储 5 个字段。
字段“注释”内容的示例,
作业 ID:1234 作业类型:维护合同:4321/M - 维护 - 计算机站点:fred @ House 执行任务:检查硬盘
我如何将其拆分为不同的字段,用于工作 ID、工作类型、合同、站点和执行的任务,我们有超过 10,000 条这种格式的记录需要拆分才能导入新数据库
假设您知道这些字段的前缀是什么,并且它们在每个条目中都是相同的,您可以使用该FIELD('target phrase', 'string to check')函数获取各个字段的位置,然后用于SUBSTRING删除插入之间的位。
FIELD('target phrase', 'string to check')
SUBSTRING