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

The Archive Base Latest Questions

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

I have a view vwGetData which gets data from two tables t1,t2 and has

  • 0

I have a view vwGetData which gets data from two tables t1,t2 and has fields:

t1.Field1 [ALIAS1], t1.Field2, t2.Field3, t2.Field4, t2.Field5 [ALIAS5]

I will provide below input

Select * from vwGetData

i want to get below output in C#/SQL

ALIAS1
Field2
Field3
Field4
ALIAS5

or

ALIAS1, Field2, Field3, Field4, ALIAS5

I want to do this using C# and SQL.

  • 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-24T23:45:31+00:00Added an answer on May 24, 2026 at 11:45 pm

    The first thing you would do is make sure that no data gets returned:

    SELECT TOP 0 [vwGetData].* FROM [vwGetData] WHERE 1 = 2;
    

    Now assuming you know how to set up a DataReader you would do the following:

    using(var reader = command.ExecuteReader())
    {
      // This will return false - we don't care, we just want to make sure the schema table is there.
      reader.Read();
    
      var tableSchema = reader.GetSchemaTable();
    
      // Each row in the table schema describes a column
      foreach (DataRow row in tableSchema.Rows)
      {
        Console.WriteLine(row["ColumnName"]);
      }
    }
    

    You can also could also look into the SQL Catalog SYS Views.

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

Sidebar

Related Questions

I have a view that has a list of jobs in it, with data
I have a view which contains a form, the form posts and the data
I have a View class (OrderView.aspx) which shows the details of an order (Account
I have view.jsp and edit.jsp pages. Both call load() method of an action, which
I have view which contains a scrollView. When the view shows up the image
i have view which looks something like this : <% using (Ajax.BeginForm(new AjaxOptions {
I have view for entering new entity. On that view I have two buttons:
I have a web solution (in VS2010) with two sub-projects: Domain which holds the
I have view controller, and inside I have IBOutlet UITextField *title , which is
I am trying to create multiple records with two collections that i have View

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.