在 INSERT 语句中使用 OPENROWSET 并指定另一列的值?
我正在使用 OPENROWSET(BULK ...) 将文件的内容插入到我的表中。问题是我还需要在同一个 INSERT 语句中指定另一列的值。
我有这样的事情:
INSERT INTO MyTable
SELECT *
FROM OPENROWSET(BULK 'c:\foo.bin', SINGLE_BLOB)
我确信有一种方法可以在这里指定不同列的值,但我不知道如何。
I'm using OPENROWSET(BULK ...) to insert the contents of a file into my table. The problem is that I also need to specify the value of another column in the same INSERT statement.
I have something like this:
INSERT INTO MyTable
SELECT *
FROM OPENROWSET(BULK 'c:\foo.bin', SINGLE_BLOB)
I'm sure there's a way to also specify the value of a different column here, but I don't know how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了,它位于 astandar 发布的链接中,但在示例 D 下:
Found it, it was in the link posted by astandar, but under example D: