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

时间:2017-02-16 18:31:31

标签: mysql sql mysql-workbench concat string-concatenation

我尝试创建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

2 个答案:

答案 0 :(得分:1)

试试这个:

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

答案 1 :(得分:0)

反斜杠(\)用作转义字符。使用双反斜杠(\\),你想要一个文字反斜杠:

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