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.
我有一个 SQL Server 2008 数据库,其中包含一个包含image列的表。
image
知道如何编写查询以将 bin 文件插入图像字段吗?
先感谢您!
完全同意marc_s。
marc_s
但是您的查询将是这样的。
INSERT yourtable(ImageColumn) SELECT image FROM OPENROWSET(BULK, 'filename.png', SINGLE_BLOB) AS blobtable(image)