在sql里 怎么向一张表里插入image 数据

2024-12-27 20:40:16
推荐回答(1个)
回答1:

若是sql server 2005 ,则可以这样
update xsb set zp=(select * from Openrowset(bulk N'c:\1.jpg',single_blog) as Document)
where xh='081101'

--zp表示照片字段,类型为image
--xsb表示学生装表
--xh表示学号
--c:\1.jpg 表示要插入的图版路径