Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个简单的选择语句使用字符串函数的组合从目录列表中提取文件名?
xxxx\xxxx\filename.txt
该SUBSTRING_INDEX功能非常适合:
SUBSTRING_INDEX
SUBSTRING_INDEX(myFileName, '\\', -1)
的最后一个参数-1表示返回最后一个之后\的所有内容。请注意,您必须转义\as \\。
-1
\
\\
这里有一个有效的 SQL Fiddle 。