本文介绍了如何在SQL中拆分字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一个字符串就像(1:2~2:1,4,5~3:这是一个测试)
我想用第一个'〜'拆分它然后输出在sql中带':'的字符串
输出如
1 2
2 1,4,5
3这是一个测试
i希望它在SQL查询中是否可以在不使用函数或cte的情况下完成它
提前感谢。
我的尝试:
i已经尝试过。
并且还尝试了sql的SUBSTRING函数。
解决方案
a string is like (1:2~2:1,4,5~3:this is a test)
and i want to split it with first '~' AND THEN the output string with ':' in sql
output like
1 2
2 1,4,5
3 this is a test
i want it in SQL query is it possible to do it without using function or cte
thanks in advance.
What I have tried:
i have tried case when.
and also tried SUBSTRING function of sql.
解决方案
这篇关于如何在SQL中拆分字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!