SQL Split Address Line into Separate Columns

Why do neural networks need so many training examples to perform?

What to look for when criticizing poetry?

Can a hotel cancel a confirmed reservation?

Eww, those bytes are gross

Is it possible to grant users sftp access without shell access? If yes, how is it implemented?

How to make ice magic work from a scientific point of view?

How would an AI self awareness kill switch work?

Should I reinstall Linux when changing the laptop's CPU?

Which one of these password policies are more secure?

What is the wife of a henpecked husband called?

Absorbing damage with Planeswalker

What is a good reason for every spaceship to carry a weapon on board?

Has any human ever had the choice to leave Earth permanently?

Using only 1s, make 29 with the minimum number of digits

Construct transition probability matrix for markov chain

The use of the spellings -zz- vs. -z-

Why is it that Bernie Sanders is always called a "socialist"?

What is the most fuel efficient way out of the Solar System?

Finding a logistic regression model which can achieve zero error on a training set training data for a binary classification problem with two features

False written accusations not made public - is there law to cover this?

How do you funnel food off a cutting board?

Why is working on the same position for more than 15 years not a red flag?

How much mayhem could I cause as a sentient fish?

Is there a weight limit to Feather Fall?



SQL Split Address Line into Separate Columns














0















Whats the best way to split a comma list column into different columns? I am looking for a simple algorithm, heard it is best to avoid scalar value functions, as they might be slow. Searching into many methods, substring, find, splitstring; we need to run this algorithm across millions of addresses, so looking for best, optimal answer with good coding practice.



create table dbo.AddressTest (AddressLine varchar(255))

insert into dbo.AddressTest (AddressLine)
values ('123 Maple Street, Austin, Texas, 78653, 555-234-4589')

-- may not require substring, just looking for good way
select
substring as AddressStreet -- Expected: 123 Maple Street
substring(...) as City, -- Expected: Austin
substring(...) as State, -- Expected: Texas
substring(...) as ZipCode -- Expected: 78653
substring(...) as PhoneNumber -- Expected: 555-234-4589
from dbo.AddressTest








share



























    0















    Whats the best way to split a comma list column into different columns? I am looking for a simple algorithm, heard it is best to avoid scalar value functions, as they might be slow. Searching into many methods, substring, find, splitstring; we need to run this algorithm across millions of addresses, so looking for best, optimal answer with good coding practice.



    create table dbo.AddressTest (AddressLine varchar(255))

    insert into dbo.AddressTest (AddressLine)
    values ('123 Maple Street, Austin, Texas, 78653, 555-234-4589')

    -- may not require substring, just looking for good way
    select
    substring as AddressStreet -- Expected: 123 Maple Street
    substring(...) as City, -- Expected: Austin
    substring(...) as State, -- Expected: Texas
    substring(...) as ZipCode -- Expected: 78653
    substring(...) as PhoneNumber -- Expected: 555-234-4589
    from dbo.AddressTest








    share

























      0












      0








      0








      Whats the best way to split a comma list column into different columns? I am looking for a simple algorithm, heard it is best to avoid scalar value functions, as they might be slow. Searching into many methods, substring, find, splitstring; we need to run this algorithm across millions of addresses, so looking for best, optimal answer with good coding practice.



      create table dbo.AddressTest (AddressLine varchar(255))

      insert into dbo.AddressTest (AddressLine)
      values ('123 Maple Street, Austin, Texas, 78653, 555-234-4589')

      -- may not require substring, just looking for good way
      select
      substring as AddressStreet -- Expected: 123 Maple Street
      substring(...) as City, -- Expected: Austin
      substring(...) as State, -- Expected: Texas
      substring(...) as ZipCode -- Expected: 78653
      substring(...) as PhoneNumber -- Expected: 555-234-4589
      from dbo.AddressTest








      share














      Whats the best way to split a comma list column into different columns? I am looking for a simple algorithm, heard it is best to avoid scalar value functions, as they might be slow. Searching into many methods, substring, find, splitstring; we need to run this algorithm across millions of addresses, so looking for best, optimal answer with good coding practice.



      create table dbo.AddressTest (AddressLine varchar(255))

      insert into dbo.AddressTest (AddressLine)
      values ('123 Maple Street, Austin, Texas, 78653, 555-234-4589')

      -- may not require substring, just looking for good way
      select
      substring as AddressStreet -- Expected: 123 Maple Street
      substring(...) as City, -- Expected: Austin
      substring(...) as State, -- Expected: Texas
      substring(...) as ZipCode -- Expected: 78653
      substring(...) as PhoneNumber -- Expected: 555-234-4589
      from dbo.AddressTest






      sql-server sql-server-2016 query substring string-splitting





      share












      share










      share



      share










      asked 3 mins ago









      GregThomas582GregThomas582

      354




      354






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "182"
          };
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2fdba.stackexchange.com%2fquestions%2f230928%2fsql-split-address-line-into-separate-columns%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Database Administrators Stack Exchange!


          • 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%2fdba.stackexchange.com%2fquestions%2f230928%2fsql-split-address-line-into-separate-columns%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

          ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

          Always On Availability groups resolving state after failover - Remote harden of transaction...

          Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...