Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
922 views
in Technique[技术] by (71.8m points)

sql - Trimmining a column with bad data

My data looks like

ID    LPNumber 
1     30;#TEST123
2     302;#TEST1232

How can I update MyText to drop everything before the # and including the #, so I'm left with the following:

ID    LPNumber 
1     TEST123
2     TEST1232

I've looked at SQL Server Replace, but can't think of a viable way of checking for the ";"

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

On the MSDN REPLACE page, the menu on the left gives the complete list of string functions available.

UPDATE
   MyTable
SET
   LPNumber = SUBSTRING(LPNumber, CHARINDEX('#', LPNumber)+1, 8000);

I'll let you work out (from MSDN) the filter needed in case there is no # in the column...

Edit:

Why 8000?

The longest non-LOB string length is 8000 so it is shorthand for "until end of string". You can use 2147483647 too for max columns or to make it consistent.

Also, LEN can bollix you.

You'd need to use DATALENGTH but then you need to know the data type because this counts bytes, not characters. See https://stackoverflow.com/a/2557843/27535 for example

So using a magic number is perhaps a lesser evil...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...