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 8758361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T14:31:39+00:00 2026-06-13T14:31:39+00:00

Pardon me if I’m asking this, but I’m not a SQL Server nor SQL

  • 0

Pardon me if I’m asking this, but I’m not a SQL Server nor SQL developer.

i have a CSV that i import into a table let’s call it T that i create on the fly in SQL Server 2005.

what i would like to do is to run some queries against other tables based on the data imported into the table T i created.
example :

select * 
from TableX 
where customerID = [this should contain the customerID from the table T]

and then if i find it, i need to update the same table T, if not i move along… until the last record in that csv file. Any idea will be appreciated.

  • 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-13T14:31:40+00:00Added an answer on June 13, 2026 at 2:31 pm

    No loop necesary for what you want, it seems that you only need IN:

    SELECT *
    FROM TableX
    WHERE CustomerID IN (SELECT CustomerID FROM TableT)
    

    If you need to update TableX with some mark if exists on TableT, it should be:

    UPDATE TableX
    SET Mark = 1
    WHERE CustomerID IN (SELECT CustomerID FROM TableT)
    

    If you need to update TableX with some value from TableT, it should be something like this:

    UPDATE X
    SET X.Column = T.Column
    FROM TableX X
    INNER JOIN TableT T
    ON X.CustomerID = T.CustomerID 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please pardon me asking this rudimentary question, but let me know if anyone knows
Pardon me, this really is a noob question but please understand that I do
Pardon me if I am asking something really stupid. But this is what I
Pardon me if this sounds a question that has been asked many times but
Pardon if this is a n00b question, I'm a n00b to grails... I have
Pardon the excessive amount of code, but I'm not sure if I can explain
Pardon the pun in my title (heh) but this is seriously driving me nuts!
Pardon me for this long story, but I think the question merits it. I
Pardon me if you feel this has been answered numerous times, but I need
Pardon for this, i just get this error in console but i can't see

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.