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

  • Home
  • SEARCH
  • 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 9036629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T09:02:59+00:00 2026-06-16T09:02:59+00:00

i am trying to make a query but it is not right. what i

  • 0

i am trying to make a query but it is not right.

what i want to do is to apply join in case

my query is

SELECT LEFT(Student_First_Name,LEN(Student_First_Name)-LEN(Name_Lookup_Table.Dirty_Name)),Name_Lookup_Table.Dirty_Name, Name_Lookup_Table.Standard_Name

case
when Transformed_All_Student.Student_First_Name like '% '+Name_Lookup_Table.Dirty_Name
then
from Transformed_All_Student left join Name_Lookup_Table 
on Transformed_All_Student.Student_First_Name like '% '+Name_Lookup_Table.Dirty_Name

when Transformed_All_Student.Student_First_Name like '% '+Name_Lookup_Table.Dirty_Name+'%'
then from Transformed_All_Student left join Name_Lookup_Table on Transformed_All_Student.Student_First_Name like '% '+Name_Lookup_Table.Dirty_Name+'%'

when Transformed_All_Student.Student_First_Name like Name_Lookup_Table.Dirty_Name+'% '
then from Transformed_All_Student left join Name_Lookup_Table on Transformed_All_Student.Student_First_Name like Name_Lookup_Table.Dirty_Name+'% '

can anyone help??

  • 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-06-16T09:03:00+00:00Added an answer on June 16, 2026 at 9:03 am

    I do not think you can put FROM in case when. one possible solution is using UNION. You probably can optimize this:

        SELECT LEFT(Student_First_Name
            , LEN(Student_First_Name)-LEN(nlt.Dirty_Name))
            , nlt.Dirty_Name
            , nlt.Standard_Name
    
        FROM Transformed_All_Student tas
                LEFT JOIN Name_Lookup_Table nlt
                            ON tas.Student_First_Name like '% '+nlt.Dirty_Name
        WHERE tas.Student_First_Name like '% '+nlt.Dirty_Name
    
        UNION
    
        SELECT LEFT(Student_First_Name
            , LEN(Student_First_Name)-LEN(nlt.Dirty_Name))
            , nlt.Dirty_Name
            , nlt.Standard_Name
    
        FROM Transformed_All_Student tas 
                LEFT JOIN Name_Lookup_Table nlt 
                    ON tas.Student_First_Name like '% '+nlt.Dirty_Name+'%'
    
        WHERE tas.Student_First_Name like '% '+nlt.Dirty_Name+'%'
    
        UNION
    
        SELECT LEFT(Student_First_Name
            , LEN(Student_First_Name)-LEN(nlt.Dirty_Name))
            , nlt.Dirty_Name
            , nlt.Standard_Name
        FROM Transformed_All_Student tas 
                LEFT JOIN Name_Lookup_Table nlt 
                        ON tas.Student_First_Name like nlt.Dirty_Name+'% '
    
        WHERE tas.Student_First_Name like nlt.Dirty_Name+'% '
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to make a query, but I can't find a way to do
I am trying to make a query to work, but with no luck. I
I'm trying to make a query, something like this: SELECT * FROM table WHERE
I'm trying to make a query to get rush hours for everyday on a
I am trying to make a query that will insert multiple values from my
I am trying to make a query to an SQL database and I can't
I'm trying to make a SPARQL query, that returns a variable which contains two
I've been trying to figure out how I can make a query with MySQL
I'm trying to make a query that looks at a single table to see
Hello I'm trying to dynamically generate some inputs for my form, but it's not

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.