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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:32:45+00:00 2026-05-24T22:32:45+00:00

I have this code in MS SQL: select * from table where column1 in

  • 0

I have this code in MS SQL:

select * from table where column1 in (select column2 from table)

How can I translate this using a DataTable?

Something along the lines of: table.select("column1 in column2")

  • 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-24T22:32:45+00:00Added an answer on May 24, 2026 at 10:32 pm

    you can’t.
    but you can do it via linq + table.select:

    table.Select(string.Format("CITY in '{0}'",string.Join("','",table.Rows.OfType<DataRow>().Select(r=>r["COUNTRY"].ToString()).Distinct())))
    

    EXPLANATION:
    suppose you have a very simple table

    ID CITY COUNTRY
    1 NY USA
    2 Moscow Russia
    3 LA USA
    4 St Peterburg Russia

    1. Using LINQ to Objects we select all unique values from Country column and concatenate values (via string.Join) to the IN filter statement string. For our example it will be USA’,’Russia
    2. surround IN filter statement with quotes via string.Format: ‘USA’,’Russia’
    3. Pass IN filter in dataTable.Select(“CITY IN (‘USA’,’Russia’)”)

    FYI:

    If you need to execute really cool SQL queries against DataTables\DataSets you can use NQuery it is very fast and standards compliant.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have this recursive code <ul> <% sql=SELECT * FROM cats ORDER BY orderid
I have this JDBC SQL query: select * from table where TX_DATE = {d
I have this sql query retrieving IDs from a table with 3 columns: ID,
I have a table in SQL Server which looks like this: ID Code Name
I always have this notion that writing SQL queries in the code behind is
I have this code #include <iostream> using namespace std; int main(int argc,char **argv) {
So I have this SQL table that I need to update. Now we use
I have a table called Shoppings in my SQL db. This one has a
Basically I'm trying to do this in LINQ to SQL; SELECT DISTINCT a,b,c FROM
I have this code, but i cant make it work: images = Image.find_by_sql('PREPARE stmt

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.