Tagged Questions
0
votes
1answer
1k views
MSSQL - How to split a string using a comma as a separator [duplicate]
I need to populate columns in my database for Lattitude and Longitude, however the original information is stored as a single string
eg.
UDFChar1 = 41.243223,-8.183913
I am guessing that the TRIM ...
0
votes
1answer
75 views
T-SQL Removing numbers from the end of the email address
Right, I have some 21000 records where email addresses have numbers at the end ( . + 15 digit long number, example: xyz@gmail.com.201211200200027)
Now, the best solution i can think of is
Update ...
1
vote
5answers
226 views
case statement to delete extra spaces only when there is some
I replace all blanks with @ using this
SELECT *, REPLACE(NAME,' ','@') AS NAME2
which results miss@test@blogs@@@@@@@@@@@@@@ (different number of @s dependent on length of name!
I then delete all ...
1
vote
5answers
3k views
Is it possible to Trim all the values in a column in a single statement?
I've a table in a (MS) SQL database which has an Id column (identity, int) and a Name column (varchar(250)).
However, the values in the name column contain (fairly random) leading and trailing spaces ...
2
votes
1answer
2k views
T-SQL trim not working - let spaces on the result
I have a trim function that apply ltrim and rtrim
CREATE FUNCTION dbo.TRIM(@string VARCHAR(MAX))
RETURNS VARCHAR(MAX)
BEGIN
RETURN LTRIM(RTRIM(@string))
END
GO
I do the following query:
SELECT ...
1
vote
2answers
704 views
Trim numbers from end of SQL variable
I have a SQL variable called @FileName which I need to trim numbers off the end. Heres an example of how my strings look at the moment, and how i need them to be:
lorem-1 to lorem
lorem-ipsum-456 to ...
1
vote
4answers
2k views
T-SQL syntax issue with “LTRIM(RTRIM())” not working correctly
What is wrong with this statement that it is still giving me spaces after the field. This makes me think that the syntax combining the WHEN statements is off. My boss wants them combined in one ...
11
votes
2answers
3k views
Algorithms to trim leading zeroes from a SQL field?
I just came across the interesting problem of trying to trim the leading zeroes from a non-numeric field in SQL. (Since it can contain characters, it can't just be converted to a number and then ...
7
votes
3answers
5k views
Remove trailing empty space in a field content
I am using SQL server MSDE 2000. I have a field called notes of type nvarchar(65).
The content is 'Something ' with an extra space after the content (quotes for clarity) in all the records. I used ...
