gpt4 book ai didi

mysql - CONCAT 字符串中列中的最后一个数字

转载 作者:行者123 更新时间:2023-11-29 11:00:55 25 4
gpt4 key购买 nike

我正在尝试创建一个 CONCAT() 来获取 exp_id 列中的最后一个数字,然后添加文件名以显示为单独的列。该列将显示以下内容。

copy \\\resfs\reo\reoexps\87\5\7040445i.pdf C:\temp\images 
CONCAT('copy \\\resfs\reo\reoexps\87\',', SUBSTRING(exp_id, 1,CHAR_LENGTH(exp_id) -1) '\', file_name, 'C:\temp\images') AS D,

enter image description here
enter image description here

enter image description here

最佳答案

试试这个:

CONCAT('copy ','\\','\\','\\','resfs\\reo\\reoexps\\87\\', SUBSTRING(CAST(exp_id AS char), 1,CHAR_LENGTH(exp_id) -1),'\\', file_name, ' C:\\temp\\images') AS D

关于mysql - CONCAT 字符串中列中的最后一个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42281979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com