Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6692255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:50:49+00:00 2026-05-26T05:50:49+00:00

How would I go about creating a query to replace a social security number

  • 0

How would I go about creating a query to replace a social security number from the middle of a text block?

The table is like this:

column1     column2
11          text SSN more text

SSNs are not all formatted the same either, some are like this xxx-xx-xxxx and some are just a number string xxxxxxxx.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T05:50:49+00:00Added an answer on May 26, 2026 at 5:50 am

    If you are wanting for example to redact SSN#’s from your table, you can make use of the PATINDEX function to find SSN#’s and the REPLACE command to convert them to something that hides the number. Here is an example (note that this code assumes there will only be one SSN# in a value at once. If there could be multiple different SSN#’s, only the first one will be found):

    update
        MyTable
    set
        Column2 = replace(Column2, 
            case
                when patindex('% [0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9] %', Column2) <> 0 
                    then substring(Column2, patindex('% [0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9] %', Column2) + 1, 11)
                when patindex('% [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] %', Column2) <> 0 
                    then substring(Column2, patindex('% [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] %', Column2) + 1, 9)
                else ''
            end,
            case
                when patindex('% [0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9] %', Column2) <> 0 
                    then 'xxx-xx-xxxx'
                when patindex('% [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] %', Column2) <> 0 
                    then 'xxxxxxxxx'
                else ''
            end)
    

    Sample input data:

    1 | text 123-45-6789 more text
    2 | testing 894315466 and blah blah blah
    3 | testing no ssn 348933 result
    

    Sample Output:

    1 | text xxx-xx-xxxx more text
    2 | testing xxxxxxxxx and blah blah blah
    3 | testing no ssn 348933 result
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In relation to this stackoverflow question , how would I go about creating my
I am creating a table to summarize data that is gathered from about 8
How would I go about creating multiple documents when a single file is opening
How would I go about creating a real world form creation class that I
How would I go about creating a Google map that allows the user to
how would i go about creating a many-many relationship among data objects in google
How would I go about creating a tripcode system (secure) for a message board
How would you guys go about creating a real-time search engine on .Net platform.
Just a quick question about how you would go about implementing this. I want
My actual question is how would I go about creating a autocomplete dropdown off

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.