SQL Server :: How To Select All Columns Of Table But To Distinct By One Column

Dec 29, 2010

How can i select all columns of table but to distinct by one column? i am tryin to figure it out without success, i know how to make distinct (select distinct column from table, but i need all the values from the table and to distinct by Delcompany.

my line is:

[Code]....

View 13 Replies


Similar Messages:

SQL Server :: How To Use Distinct On A Single Column From A List Of Columns

Jan 21, 2011

I would like to know if there is a way that I can use DISTINCT on one column's values but need to show other columns where the value of the DISTINCT column is equal to another table's column

View 7 Replies

Select Distinct And Include Non-distinct Columns?

Apr 20, 2010

I would like to select a distinct query based on three fields and display the rest of the fields. For example,

I have firstname, lastname, address, city, state and zip, but I only want to use the distinct on these fields first and last name. However when i use the distinct function I get a distinct on all the selected rows. I just want to distinct firstname and lastname and display the other fields. for example,

Mary Smith New York
Mary Smithy New York
Mary Smith Maine

I would like the result to be:

Mary Smith New York
Mary Smithy New York

I don't care about Mary Smith Maine, because i am only using the distinct for "Mary Smith" firstname and last name and showing the city.

View 15 Replies

SQL Server :: How To Get Distinct Column Name Which Are Having Distinct Values In The Column

Feb 4, 2011

I have one table(tableName is getDetails and having three column ID, Name, City)

View 6 Replies

DataSource Controls :: How To Select Multiple Columns With Distinct Key Word

Jan 2, 2010

there are multiple rows with same SubContact_No and with same value of some columns. for a single column I am firing query like

Select distinct (Financial_Status) from mtblSub_Contract where SubContract_No=@SubContract_No";

it's working fine.... (it's ok with a Single column)

But Now I need multiple columns value so how to query for this.

Select distinct (Financial_Status, colums2, column3) from mtblSub_Contract where SubContract_No=@SubContract_No"; is not working

So how to do that.

View 5 Replies

SQL Server :: Get 3 Tables Sql Statement - Select Table C Column By Using Table A?

Mar 25, 2011

i have 3 tables which are Table A(a Id,b Id),

Table B(b Id,a Id,c Id),

Table C(c Id,b Id)

How can i select Table C column by using table A?

View 2 Replies

SQL Server :: How To Show Two Columns One Is The One Will Contain The Distinct Values From 'col'

Mar 30, 2011

I have a table 'tbl' and a column 'col'. The elements are like 1,1,2,2,2,3,4,4. Now I want to show two columns one is the one will contain the distinct values from 'col' like 1,2,3,4.... and second will contain the count for each of them like for above case it will be 2,3,1,2.

View 1 Replies

SQL Server :: Select Special Characters From The Table Column Value?

Dec 29, 2010

I want to select the list of messagetext from the messages table where the message text contains any of the Carriage Return Characters?? (Eg: /r/n) what are the other Carriage Returns characters and how can i filter those from the message text?

View 8 Replies

SQL Server :: Use Distinct With * In Sql Select Statement?

Mar 21, 2011

how can i use Distinct in my sql statement like that

SELECT
Distinct * from my_table ?? ? ? ?? ? ? ?

View 2 Replies

SQL Server :: Select Distinct From Another Select?

Feb 26, 2011

how to write a select distinct column1 from another select ?

i mean SELECT distinct column1 from (SELECT column1,column2,column3 where column1 =1)

View 1 Replies

SQL Server :: Selecting Distinct Keys With Highest Value In Another Column?

Sep 25, 2010

I have a table with 2 columns that lookes something like this:

ChapterID | VersionNumber | VersionID |
1001 | 1 | 1004 |
1001 | 2 | 1005 |
1002 | 1 | 1006 |
1002 | 2 | 1007 |
1002 | 3 | 1008 |
1003 | 1 | 1009 |
1004 | 1 | 1010 |

what I wanna achieve is to have a statement that selects distinct uniqueid's from the chapterID field and with every duplicate I would like to have the record with the highest version number

Below is the result I would like to achieve:

ChapterID | VersionNumber | VersionID |
1001 | 2 | 1005 |
1002 | 3 | 1008 |
1003 | 1 | 1009 |
1004 | 1 | 1010 |

I have tried this statement:

Select Distinct ChapterID, max(VersionNumber) from Versions groupby ChapterID

and it works fine, but when I add the VersionID column like so:

Select Distinct ChapterID, VersionID, max(VersionNumber) from Versions group by ChapterID

it returns an error.

View 9 Replies

ADO.NET :: Select Name Column From The Applicant Table And Value Column From ApplicantValue Table?

Feb 2, 2011

I am quite new to LINQ, and I am stuck with this probably basic problem, but haven't been able to find a solution, so I thought I could ask here.

So, I have this repository where I put my functions for data accessing, and now I need to write a function to get all the applicants that have applied for this particular advertisement, and their values too. Now, the values are stored in a separate M:N table, where every row consists of the applicantID,advertisementID and value. I just wanna append the value to every applicant that I show, so that it would look like a Ranking List.

However, I do not seem to know how to select just the name column from the Applicant table, and just the Value column from the ApplicantValue table.

And there's this Iqueryable interface that further confuses me...

Here's my function to get the Applicants only:

[Code]....

Now, if I try to add to the definition of the type two columns, it says that it only messes with types, i.e. one type should be passed. So I figured I would do a ViewModel and then pass it, like this

[Code]....

and then in the function I have no idea how to pass the values:

View 5 Replies

SQL Server :: Find Out Distinct Rows In Table

Sep 29, 2010

I have a one sql table, it contain 5 column id, ipaddress, status, datetime, value. I need to find distinct rows as per ipaddress column basic..

View 7 Replies

SQL Server :: How To Copy One Column Data From A Table To Another Table Column With Rest Of The Column

Jan 16, 2011

I want to copy data from a table[tblExcel][No.of columns:2] to another table[ev_event] which has 5 columns, 2 columns from the another table, 3 columns from user defined value

[code].....

View 4 Replies

SQL Server :: Query To Return Conditional Counts Both Distinct And Non Distinct?

Sep 30, 2010

I have the following table structure:

[code]....

The following query returns the default recordset:

[code]....

View 4 Replies

SQL Server :: Select Number Of Items With Distinct Brand For Each Brand?

Feb 4, 2011

I have a page where I'm displaying all the different brand that I company stocks

For each distinct brand I need to display a count of the number of items with that particular brand

e.g.

brand name
number of products with that brand
brand name 2
number of products with that brand
brand name 3
number of products with that brand

View 2 Replies

C# - Separate Table Column Into Multiple GridView Columns?

Nov 19, 2010

I am retrieving a column from a table using an SqlDataSource in ASP.NET/C#, which contains multiple 'values' separated by commas. I'd like to be able to separate this values into multiple columns in my GridView, and also allow them to update them. Is this easy to accomplish?

View 1 Replies

Display A Gridview Using Select Statement Of Two Column In One Table?

Oct 24, 2010

I'm using asp.net and c# language.

How can i display a GridView using select statement of two column in one table?

This is my coding:

if (sdr.Read())
{
if(namaPembekal.Equals(sdr["namaPembekal"]) && tarikhRo.Equals(sdr["tarikhRo"]))
{
Session.Add("namaPembekal",sdr["namaPembekal"]);
Session.Add("tarikhRo", sdr["tarikhRo"]);
if((((String)(Session["namaPembekal"])).Equals("namaPembekal")) && ((String
(Session["tarikhRo"])).Equals("tarikhRo"))
GridView1.DataSourceID = SqlDataSource2.ID;
GridView1.DataSourceID = txtJourneyDate.Text;
}

View 1 Replies

ADO.NET :: How To Select The Distinct

Feb 9, 2011

Having some troubles selecting distinct rows.

[Code]....

This is not giving me the wanted results.

Two models:

[code]....

Each ContentVersion is linked to Content through the ContentID.

I want to select all "Content" where UserID = X, then for each selected "Content" I want the latest "ContentVersion".

The return type should be of type <IQueryable>ContentVersion.

View 21 Replies

DataSource Controls :: LINQ - Select Column In Data Table?

Feb 9, 2010

Mmy data table has four columns. How can I get only selected columns name?

View 5 Replies

SQL Server :: Trying To Sum Two Columns In One Select Statement?

Jan 3, 2011

Is it possible to sum to clolumns in one select statement?

[Code]....

[Code]....

ID sUM(aMOUNTpAID) sUM(aMOUNTdUE)
1234 506.64 4340.00

The actual rows look like this:

1234 10.00 5.00
1234 200.00 100.00
1234 130.00 130.00
1234 166.64 1000.00
totals 506.64 1235.00

View 7 Replies

ADO.NET :: Select Only One Distinct Record?

Nov 24, 2010

1.Category:
CatID(Pkey),
CatName,

ParentCatId(Fkey)=> CatID is used as a ParentCatId

2.Comp_Cat:
CCID(Pkey),
CatID,(fkey),
CompID

In my stored Procedure I am passing PageNo,CompID.. My requirement is that One parent CatName is displayed Per page but only one time.

View 4 Replies

ADO.NET :: How To Select Distinct With Count

Nov 3, 2010

This is something I can easily do in SQL, but I'm pretty new to LINQ and haven't been able to find an answer online.

I need a LINQ query that returns two values; the first a distinct value and the second the count of the first value. This is filtered by a parameter. Here is my table:

[code]....

View 2 Replies

SQL Server :: Delete Objects From Table Using Another Table To Select Rows?

Sep 14, 2010

I have one table named 'dbo.ac_Products' Within this table there is a column named 'ProductId' There is also another table named 'dbo.ac_CatalogNodes' Within this table there is a column named 'CatalogNodeId' and a column named 'CatalogNodeType'

I need to delete all the rows from 'dbo.ac_Products' and 'dbo.ac_CatalogNodes' where 'ProductId' = 'CatalogNodeId' and 'CatalogNodeType' = 1

View 4 Replies

Using Select Distinct On An Already Created DataTable Object?

Nov 16, 2010

I have an already created DataTable object which i am using for my girdview (asp.net) i also need to bind a column of that object to a DropDownList. The datatable has the correct details in the column but the column contains more that 1 of the same name in the column - hence I would love to just do some kind of SELECT DISTINCT on the datatable and copy it to a new datatable for use with binding the dropdown.

This would allow me to save resources by making another trip to the database.

Here is an example, the current datatable has a column called items and in this column has the following entries

1
1
1
1
5
5
6

And of course i need only unique items for binding to my dropdown, hence i need the following data

1
5
6

Of course i don't want to change the original datatable object but rather make a copy of it will the new details.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved