如何分割FoxPro记录?
我在 FoxPro 的 dbf 文件中有 60,000 条记录。我想将其分成每 20,000 条记录 (20000 * 3 = 60,000)。
我怎样才能实现这个目标?
我是 FoxPro 的新手。我使用的是 Visual FoxPro 5.0。
提前致谢。
I have 60,000 records in the dbf file in FoxPro. I want to split it into each 20,000 records (20000 * 3 = 60,000).
How can I achieve this?
I am new to FoxPro. I am using Visual FoxPro 5.0.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您不关心记录如何分割,托德的建议将会起作用。如果您想根据内容对它们进行划分,您需要执行 Stuart 的第一个建议,尽管他的确切答案仅在记录 ID 按顺序从 1 到 60,000 运行时才有效。
这里的最终目标是什么?为什么要分桌子?
添马舰
Todd's suggestion will work if you don't care how the records are split. If you want to divide them up based on their content, you'll want to do something like Stuart's first suggestion, though his exact answer will only work if the IDs for the records run from 1 to 60,000 in order.
What's the ultimate goal here? Why divide the table up?
Tamar
你可以直接从第一个表中选择:
但是,如果你想要更多的控制,或者你需要操作数据,你可以使用xbase代码,像这样:
自从我使用VFP以来已经有一段时间了,我没有它在这里,对任何语法错误表示歉意。
You can directly select from the first table:
if you want more control, though, or you need to manipulate the data, you can use xbase code, something like this:
It's been a while since I used VFP and I don't have it here, so apologies for any syntax errors.
如果您想根据记录数进行拆分,请尝试以下操作:
If you wanted to split based on record numbers, try this:
使用
COPY
命令时必须发出SKIP
命令以确保开始下一条记录。You must issue a
SKIP
command when using theCOPY
command to make sure you are starting on the next record.