Remove WhiteSpaces












-2















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










share|improve this question























  • 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 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











  • Thank you @LukStorms

    – user3687828
    Nov 20 '18 at 15:06
















-2















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










share|improve this question























  • 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 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











  • Thank you @LukStorms

    – user3687828
    Nov 20 '18 at 15:06














-2












-2








-2








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










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 12:14









user3687828user3687828

115




115













  • 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 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











  • 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






  • 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 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











  • 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












3 Answers
3






active

oldest

votes


















2














use replace() function



select replace(name,' ','')





share|improve this answer































    -1














    You can try with




    1. 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.


    2. For removing the spaces simply use REPLACE(Name,' ','')







    share|improve this answer


























    • 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



















    -1














    try Replace() Function to remove white space.



    Example like



    select replace(name,' ','')





    share|improve this answer























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      2














      use replace() function



      select replace(name,' ','')





      share|improve this answer




























        2














        use replace() function



        select replace(name,' ','')





        share|improve this answer


























          2












          2








          2







          use replace() function



          select replace(name,' ','')





          share|improve this answer













          use replace() function



          select replace(name,' ','')






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 20 '18 at 12:15









          fa06fa06

          12.1k2917




          12.1k2917

























              -1














              You can try with




              1. 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.


              2. For removing the spaces simply use REPLACE(Name,' ','')







              share|improve this answer


























              • 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
















              -1














              You can try with




              1. 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.


              2. For removing the spaces simply use REPLACE(Name,' ','')







              share|improve this answer


























              • 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














              -1












              -1








              -1







              You can try with




              1. 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.


              2. For removing the spaces simply use REPLACE(Name,' ','')







              share|improve this answer















              You can try with




              1. 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.


              2. For removing the spaces simply use REPLACE(Name,' ','')








              share|improve this answer














              share|improve this answer



              share|improve this answer








              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



















              • 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











              -1














              try Replace() Function to remove white space.



              Example like



              select replace(name,' ','')





              share|improve this answer




























                -1














                try Replace() Function to remove white space.



                Example like



                select replace(name,' ','')





                share|improve this answer


























                  -1












                  -1








                  -1







                  try Replace() Function to remove white space.



                  Example like



                  select replace(name,' ','')





                  share|improve this answer













                  try Replace() Function to remove white space.



                  Example like



                  select replace(name,' ','')






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 20 '18 at 12:50









                  ravi polararavi polara

                  315111




                  315111






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                      How to fix TextFormField cause rebuild widget in Flutter