Tell me more ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

I have many records with me for which I need to query the database. How can I write a query that can list down all the resultset at once using my large set of data?

The database that I used in SQL Server 2008

Let me know if you need more clarification.

share|improve this question
3  
Yes, I think you will need to clarify what you want to do. I can't really understand your question. – ConcernedOfTunbridgeWells Apr 11 '12 at 10:22
3  
Also, please work on your acceptance rate by accepting answer to your previous questions. – Thomas Stringer Apr 11 '12 at 11:57
Do you mean that you have a set of data and you want to generate a query from that set of data to return something from that query? There are a couple of ways of doing this if that's what you mean. – Grant Fritchey Apr 11 '12 at 12:26
SELECT col1, col2, col3 FROM SQLServer2008Database WHERE col1 IN (SELECT col1 FROM DatabaseWithManyRecords). We need clarificatoin :-) – MarlonRibunal Apr 12 '12 at 0:25
Grant, Yes you got that right. Its something similar – Smith Pascal Jr. Apr 12 '12 at 8:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.