求一简单 select * into a from Table语句
把指定路径下比如“E:\教育工会二期数据库资料\用户操作手册\jygh_image”下的文件名插入到一个新表中
我在这样写的,但是有语法错误:
服务器: 消息 170,级别 15,状态 1,行 1
select * into a from (master..xp_cmdshell 'dir E:\教育工会二期数据库资料\用户操作手册\jygh_image ')tt
请帮个忙
谢谢!
------解决方案--------------------create table #t(files varchar(8000))
insert into #t
exec master..xp_cmdshell 'dir E:\教育工会二期数据库资料\用户操作手册\jygh_image '
再从#t表中挑出想要的文件
drop table #t