使用 SQL 查询插入批量父行和子行
我们通过电子表格接收来自客户的大量数据。截至目前,我将它们加载到临时表中。我尝试标准化数据并创建一个父表,每个父表都有 4 或 5 个子行。有没有办法使用查询插入所有父母及其孩子?我不想写一个应用程序来做到这一点
We receive bulk data from our customers in a spread sheet. I loaded them in a temporary table as of now. I tried to normalize the data and create a parent table and each parent to have 4 or 5 child rows. Is there a way to insert all the parents and their children using queries? I dont want to write an Application to do that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您特别希望仅编写查询来执行此任务,请查看以下文章,其中概述了为 Excel 文档设置链接服务器的方法。
http://www.sql-server-helper .com/tips/read-import-excel-file-p01.aspx
如果您正确设置了此设置(这可能很痛苦),那么就像直接查询数据一样简单。
If you're specifically looking to write only queries to perform this task, check out the following article that outlines a way to set up a linked server to an excel doc.
http://www.sql-server-helper.com/tips/read-import-excel-file-p01.aspx
If you get this set up correctly (which can be a pain) it's as easy as querying the data directly.