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.
我有一个整数字段,其数字范围从 1000 到 99999。我想将此数字字段转换为 5 个字符的文本字段。这意味着所有 4 位数字在转换为文本时都会在前面添加 0。示例:整数中的 1000 必须转换为 01000 等。
我该怎么做呢?谢谢。
在您的查询中将字段更改为:
NewFieldName: format([OldFieldName],'00000')
这会将数字转换为文本值。