SQL截取字符串,保留后几位
生活随笔
收集整理的這篇文章主要介紹了
SQL截取字符串,保留后几位
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
select '[2.0]Exploration and Development Department'
--想截取掉[2.0] 只顯示Exploration and Development Department
select right('[2.0]Exploration and Development Department',len('[2.0]Exploration and Development Department')-5)
select SUBSTRING('[2.0]Exploration and Development Department',6,LEN('[2.0]Exploration and Development Department'))
---PB里的寫法是
ls_dept = Right(string(ldw_input.object.dept_index[ll_row]), len(string(ldw_input.object.dept_index[ll_row]))-5)
總結
以上是生活随笔為你收集整理的SQL截取字符串,保留后几位的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 我有一台计算机的英语作文,我想拥有一个机
- 下一篇: 坐标系间的转换