问题描述
我的硬盘中有数千张照片.所有照片文件名由 4 个参数组成:
I have thousands of photos in my hard-disk. All photo file-names consists of 4 parameter :
例如:1000091-356.gif
我想知道如何编写查询以使用文件名的 3 位数字
作为参数来更新我的表,哪个主键匹配 7 位数字
的文件名.
I'm wondering how to write a query in order to use 3 digit number
of file name as a paramer for updating my table which primary key match the 7 digit number
of the file name.
换句话说,查询的作用类似于:update myTable set col2 = 356 where col1=1000091
for all photos .
By another word a query which act like : update myTable set col2 = 356 where col1=1000091
for all photos .
推荐答案
先尝试将文件名放入表格中,(使用下面的脚本)
Try getting your file names into a table first, (using the script below)
现在您可以使用以下方法查询您的文件名:
Now you can query your filenames using:
这篇关于如何在t-sql中从硬盘读取文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!