Remove WhiteSpaces
I'm new to sql and working with a column name where names are listed with spaces.
Example: Alan Joe
I am using LTRIM and RTRIM to display name as 'AlanJoe'
select LTRIM(name)
Any help how to remove spaces between the names or any links I can learn from?
Thank you
sql
add a comment |
I'm new to sql and working with a column name where names are listed with spaces.
Example: Alan Joe
I am using LTRIM and RTRIM to display name as 'AlanJoe'
select LTRIM(name)
Any help how to remove spaces between the names or any links I can learn from?
Thank you
sql
Usereplace()
if you want to remove spaces inside a string.
– Gordon Linoff
Nov 20 '18 at 12:15
2
Which DBMS product are you using? "SQL" is just a query language, not the name of a specific database product. Please add a tag for the database product you are usingpostgresql
,oracle
,sql-server
,db2
, ...
– a_horse_with_no_name
Nov 20 '18 at 12:15
Your columns are probably of typeChar(<something>)
instead ofVARChar(<something>)
. Stop using L/R-Trim all-over the place and fix the problem. Edit: may have misunderstood the question. If you want to remove spaces between words, usereplace(field, ' ', '')
as suggested by others.
– RobIII
Nov 20 '18 at 12:17
Just for clarification. LTRIM (Left Trim) only removes the spaces at the start of a string. While RTRIM (Right Trim) only those at the end of the string. And some DBMS have a TRIM function that does both. F.e. TRIM in MS SQL Server 2017+.
– LukStorms
Nov 20 '18 at 13:02
Thank you @LukStorms
– user3687828
Nov 20 '18 at 15:06
add a comment |
I'm new to sql and working with a column name where names are listed with spaces.
Example: Alan Joe
I am using LTRIM and RTRIM to display name as 'AlanJoe'
select LTRIM(name)
Any help how to remove spaces between the names or any links I can learn from?
Thank you
sql
I'm new to sql and working with a column name where names are listed with spaces.
Example: Alan Joe
I am using LTRIM and RTRIM to display name as 'AlanJoe'
select LTRIM(name)
Any help how to remove spaces between the names or any links I can learn from?
Thank you
sql
sql
asked Nov 20 '18 at 12:14
user3687828user3687828
115
115
Usereplace()
if you want to remove spaces inside a string.
– Gordon Linoff
Nov 20 '18 at 12:15
2
Which DBMS product are you using? "SQL" is just a query language, not the name of a specific database product. Please add a tag for the database product you are usingpostgresql
,oracle
,sql-server
,db2
, ...
– a_horse_with_no_name
Nov 20 '18 at 12:15
Your columns are probably of typeChar(<something>)
instead ofVARChar(<something>)
. Stop using L/R-Trim all-over the place and fix the problem. Edit: may have misunderstood the question. If you want to remove spaces between words, usereplace(field, ' ', '')
as suggested by others.
– RobIII
Nov 20 '18 at 12:17
Just for clarification. LTRIM (Left Trim) only removes the spaces at the start of a string. While RTRIM (Right Trim) only those at the end of the string. And some DBMS have a TRIM function that does both. F.e. TRIM in MS SQL Server 2017+.
– LukStorms
Nov 20 '18 at 13:02
Thank you @LukStorms
– user3687828
Nov 20 '18 at 15:06
add a comment |
Usereplace()
if you want to remove spaces inside a string.
– Gordon Linoff
Nov 20 '18 at 12:15
2
Which DBMS product are you using? "SQL" is just a query language, not the name of a specific database product. Please add a tag for the database product you are usingpostgresql
,oracle
,sql-server
,db2
, ...
– a_horse_with_no_name
Nov 20 '18 at 12:15
Your columns are probably of typeChar(<something>)
instead ofVARChar(<something>)
. Stop using L/R-Trim all-over the place and fix the problem. Edit: may have misunderstood the question. If you want to remove spaces between words, usereplace(field, ' ', '')
as suggested by others.
– RobIII
Nov 20 '18 at 12:17
Just for clarification. LTRIM (Left Trim) only removes the spaces at the start of a string. While RTRIM (Right Trim) only those at the end of the string. And some DBMS have a TRIM function that does both. F.e. TRIM in MS SQL Server 2017+.
– LukStorms
Nov 20 '18 at 13:02
Thank you @LukStorms
– user3687828
Nov 20 '18 at 15:06
Use
replace()
if you want to remove spaces inside a string.– Gordon Linoff
Nov 20 '18 at 12:15
Use
replace()
if you want to remove spaces inside a string.– Gordon Linoff
Nov 20 '18 at 12:15
2
2
Which DBMS product are you using? "SQL" is just a query language, not the name of a specific database product. Please add a tag for the database product you are using
postgresql
, oracle
, sql-server
, db2
, ...– a_horse_with_no_name
Nov 20 '18 at 12:15
Which DBMS product are you using? "SQL" is just a query language, not the name of a specific database product. Please add a tag for the database product you are using
postgresql
, oracle
, sql-server
, db2
, ...– a_horse_with_no_name
Nov 20 '18 at 12:15
Your columns are probably of type
Char(<something>)
instead of VARChar(<something>)
. Stop using L/R-Trim all-over the place and fix the problem. Edit: may have misunderstood the question. If you want to remove spaces between words, use replace(field, ' ', '')
as suggested by others.– RobIII
Nov 20 '18 at 12:17
Your columns are probably of type
Char(<something>)
instead of VARChar(<something>)
. Stop using L/R-Trim all-over the place and fix the problem. Edit: may have misunderstood the question. If you want to remove spaces between words, use replace(field, ' ', '')
as suggested by others.– RobIII
Nov 20 '18 at 12:17
Just for clarification. LTRIM (Left Trim) only removes the spaces at the start of a string. While RTRIM (Right Trim) only those at the end of the string. And some DBMS have a TRIM function that does both. F.e. TRIM in MS SQL Server 2017+.
– LukStorms
Nov 20 '18 at 13:02
Just for clarification. LTRIM (Left Trim) only removes the spaces at the start of a string. While RTRIM (Right Trim) only those at the end of the string. And some DBMS have a TRIM function that does both. F.e. TRIM in MS SQL Server 2017+.
– LukStorms
Nov 20 '18 at 13:02
Thank you @LukStorms
– user3687828
Nov 20 '18 at 15:06
Thank you @LukStorms
– user3687828
Nov 20 '18 at 15:06
add a comment |
3 Answers
3
active
oldest
votes
use replace()
function
select replace(name,' ','')
add a comment |
You can try with
ISNULL(LTRIM(RTRIM((FirstName,''),'') + ' ','') + LTRIM(RTRIM((LastName,''),'')
this will make FirstName LastName combination with 1 Space if FirstName Value exists else will give only Last Name.For removing the spaces simply use
REPLACE(Name,' ','')
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
add a comment |
try Replace() Function to remove white space.
Example like
select replace(name,' ','')
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392788%2fremove-whitespaces%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
use replace()
function
select replace(name,' ','')
add a comment |
use replace()
function
select replace(name,' ','')
add a comment |
use replace()
function
select replace(name,' ','')
use replace()
function
select replace(name,' ','')
answered Nov 20 '18 at 12:15
fa06fa06
12.1k2917
12.1k2917
add a comment |
add a comment |
You can try with
ISNULL(LTRIM(RTRIM((FirstName,''),'') + ' ','') + LTRIM(RTRIM((LastName,''),'')
this will make FirstName LastName combination with 1 Space if FirstName Value exists else will give only Last Name.For removing the spaces simply use
REPLACE(Name,' ','')
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
add a comment |
You can try with
ISNULL(LTRIM(RTRIM((FirstName,''),'') + ' ','') + LTRIM(RTRIM((LastName,''),'')
this will make FirstName LastName combination with 1 Space if FirstName Value exists else will give only Last Name.For removing the spaces simply use
REPLACE(Name,' ','')
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
add a comment |
You can try with
ISNULL(LTRIM(RTRIM((FirstName,''),'') + ' ','') + LTRIM(RTRIM((LastName,''),'')
this will make FirstName LastName combination with 1 Space if FirstName Value exists else will give only Last Name.For removing the spaces simply use
REPLACE(Name,' ','')
You can try with
ISNULL(LTRIM(RTRIM((FirstName,''),'') + ' ','') + LTRIM(RTRIM((LastName,''),'')
this will make FirstName LastName combination with 1 Space if FirstName Value exists else will give only Last Name.For removing the spaces simply use
REPLACE(Name,' ','')
edited Nov 20 '18 at 12:48
answered Nov 20 '18 at 12:23
Jignesh patelJignesh patel
1810
1810
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
add a comment |
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
Is there anything wrong with the answer?. As the answer is self explanatory, and gives more clarity.
– Jignesh patel
Nov 20 '18 at 12:43
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
There was mistake of syntax in replace and incorporated in the answer.
– Jignesh patel
Nov 20 '18 at 12:50
add a comment |
try Replace() Function to remove white space.
Example like
select replace(name,' ','')
add a comment |
try Replace() Function to remove white space.
Example like
select replace(name,' ','')
add a comment |
try Replace() Function to remove white space.
Example like
select replace(name,' ','')
try Replace() Function to remove white space.
Example like
select replace(name,' ','')
answered Nov 20 '18 at 12:50


ravi polararavi polara
315111
315111
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392788%2fremove-whitespaces%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Use
replace()
if you want to remove spaces inside a string.– Gordon Linoff
Nov 20 '18 at 12:15
2
Which DBMS product are you using? "SQL" is just a query language, not the name of a specific database product. Please add a tag for the database product you are using
postgresql
,oracle
,sql-server
,db2
, ...– a_horse_with_no_name
Nov 20 '18 at 12:15
Your columns are probably of type
Char(<something>)
instead ofVARChar(<something>)
. Stop using L/R-Trim all-over the place and fix the problem. Edit: may have misunderstood the question. If you want to remove spaces between words, usereplace(field, ' ', '')
as suggested by others.– RobIII
Nov 20 '18 at 12:17
Just for clarification. LTRIM (Left Trim) only removes the spaces at the start of a string. While RTRIM (Right Trim) only those at the end of the string. And some DBMS have a TRIM function that does both. F.e. TRIM in MS SQL Server 2017+.
– LukStorms
Nov 20 '18 at 13:02
Thank you @LukStorms
– user3687828
Nov 20 '18 at 15:06