Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
327 views

coldfusion distinct list

I was wondering if there was an easy way to enforce distinct values in a coldfusion list or array. Thanks
4
votes
4answers
493 views

How to create a HashSet<List<Int>> with distinct elements?

I have a HashSet that contains multiple lists of integers - i.e. HashSet<List<int>> In order to maintain uniqueness I am currently having to do two things: 1. Manually loop though ...
4
votes
4answers
175 views

SELECT DISTINCT for data groups

I have following table: ID Data 1 A 2 A 2 B 3 A 3 B 4 C 5 D 6 A 6 B etc. In other words, I have groups of data per ID. You will notice that the data group (A, B) occurs multiple ...
4
votes
5answers
938 views

C# Array, How to make data in an array distinct from each other?

C# Array, How to make data in an array distinct from each other? For example string[] a = {"a","b","a","c","b","b","c","a"}; how to get string[]b = {"a","b","c"}
3
votes
2answers
143 views

Select distinct multiple field without NULL

I have a table with Value ID and Value -------------- | id | value | -------------- | 1 | NULL | -------------- | 1 | A | -------------- | 2 | NULL | -------------- | 2 | NULL | ...
3
votes
1answer
158 views

Can I take a DISTINCT set of a COALESCE'd set of data?

I have the following bit of code, and it works so far: SELECT [id], COALESCE ([Company], [LastName] + ', ' + [FirstName]) as Customer FROM [some_database].[dbo].[some_table] ORDER BY ...
2
votes
4answers
835 views

selecting a distinct combination of 2 columns in SQL

When i run a select after a number of joins on my table I have an output of 2 columns and I want to select a distinct combination of col1 and col2 for the rowset returned. the query that i run will ...
2
votes
1answer
193 views

get Distinct Values with Sorted Data

I need a Query to get distinct keys with sorted on basis of score in Mongodb 1.6.5 I have records Like {key ="SAGAR" score =16 note ="test1" } {key ="VARPE" score =17 note ="test1" } {key ...
2
votes
1answer
87 views

Querying sql table with multiple values

I would like to query a sql table from below ID Val ------------- 1 5 1 7 1 8 1 9 2 5 2 7 2 9 3 1 3 5 that would return the following set of results query > select distinct ID from dbo.table where ...
2
votes
3answers
277 views

Linq join on parameterized distinct key

I'm trying to LINQ two tables based on a dynamic key. User can change key via a combo box. Key may be money, string, double, int, etc. Currently I'm getting the data just fine, but without filtering ...
2
votes
1answer
100 views

Counting distinct items in XSLT

I have XML like this: <assessment> <variables> <variable> <attributes> <variable_name value="FRED"/> </attributes> </variable> ...
2
votes
1answer
581 views

Excel VBA: Subtotals?

I have data of this form: Category Source Amount Dues FTW $100 Donations ODP $20 Donations IOI $33 Dues MMK $124 Where there is ...
1
vote
2answers
80 views

Use two DISTINCT statements in SQL

I have combined two different tables together, one side is named DynDom and the other is CATH. I am trying to remove duplicates from that table such as below: However, if i select distinct Dyndom ...
1
vote
2answers
57 views

How to get a cursor with distinct values only?

I want to return a cursor only with distinct values of a column. The column 'Groups' has more items but with only 2 values: 1,2,1,1,1,2,2,2,1 String[] FROM = {Groups,_ID}; public Cursor ...
1
vote
3answers
73 views

Top 10 occuring values in a table

I'm trying to put together a SQL query to gather the top 10 looked-at news items within the past week. I also need it to filter the duplicate ip addresses that have looked at the same news item. Each ...
1
vote
2answers
24 views

Duplicates in Database, Help Edit My Query to Filter Them Out?

I have just finished my latest task of creating an RSS Feed using PHP to fetch data from a database. I've only just noticed that a lot (if not all) of these items have duplicates and I was trying to ...
1
vote
2answers
117 views

List distinct values in a vector in R

How can I list the distinct values in a vector where the values are replicative? I mean, similarly to the following SQL statement: SELECT DISTINCT product_code FROM data
1
vote
4answers
108 views

Insert distinct values SQL Server

I'm trying to insert unique values into a table from a View. I have a table as below: the "fromView" has no unique constraint in passport id | passport | name | surname | address 1 44543 ...
1
vote
2answers
107 views

How to insert distinct records through core data in iPhone?

I want to insert only those records in core data in iPhone which are not already present in the sqllite table. In other words, I want to insert distinct records in my core data table. My code of ...
1
vote
4answers
49 views

MySQL returning lowest zip code

Got this SQL: SELECT DISTINCT(LocCity), LocZipCode FROM exp_course_events order by LocCity and this data: INSERT INTO `exp_course_events` (`LocCity`, `LocZipCode`) VALUES ('Aguadilla', ...
1
vote
1answer
68 views

distinct clause not working properly in hibernate

I am trying to get Distinct states of US from my SQL , but its distinct funtionality not working properly in hibernate , like Alaska is coming 6 times (its present in SQl 6 times but i want distinct ...
1
vote
2answers
90 views

MySQL count distinct query

I have a table which i kept kept posts comment_type, amount etc. PostExtras - id - amount - post_id (foreign key) - comment_type (foreign key) - ... comment_type - id - name I want to select posts ...
1
vote
1answer
80 views

Count duplicate entries with a special condition in MYSQL

I am not new to MYSQL but I can't get my head around this problem. Any help is greatly appreciated! My tables are simplified for the example: categories_table +-----+ | id | +-----+ | 1 | ...
1
vote
1answer
85 views

using distinct keyword in SQl query

I want to retrieve a table which has repeated values in column1, column2 and column3. column 4 has different sets of data corresponding to value in column3. How should I query such a table? Ex: ...
1
vote
4answers
309 views

How to filter duplicates within row using Distinct/group by with JOINS

For simplicity, I will give a quick example of what i am trying to achieve: Table 1 - Members ID | Name -------------------- 1 | John 2 | Mike 3 | Sam ...
1
vote
1answer
659 views

Getting distinct list of ID's in CoreData

What's the most efficient way to perform this query on a CoreData table? To use the standard employees database model -- I want DISTINCT department ID's for all departments that contain employees ...
1
vote
2answers
184 views

Selecting all values from row based on one distinct column

I've been browsing the forums a while trying to find a solution to my issue. I have a table in SQL Server 2000 called result with the following data; City Price DepDate RetDate Barcelona ...
1
vote
2answers
89 views

SQL eleminate mulitple value(s) if same identifier has a associated NULL value

Ok here goes: I have a table with id ( can be duplicate but not NULL ) and value ( can be duplicate and NULL ) id value ----- ----- 1 red 1 red 1 (null) 2 blue 2 ...
1
vote
4answers
426 views

T-SQL Distinct column problem when trying to filter duplicates out

I have the following data COL-1 COL-2 1 0TY/OK 1 0TY/OK 1 0TY/OK 1 0TY/OK 1 0TY/OK 2 2KP/L 2 2KP/L 2 2KP/L 2 2KP/L ...
1
vote
3answers
112 views

Counting distinct items in XSLT independent of depth

If I run the following XSLT code: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text"/> <xsl:key name="kValueByVal" ...
1
vote
5answers
162 views

distinct on a single column, yet returning a row from the same table based on an unselected condition

I am new to Sql server, and my MySql background is only decent, nothing exceptional. I have a table with 5 columns: Neighbrhood City State zip_code zip_percent The goal of the query: To provide a ...
1
vote
5answers
174 views

not including null values in sql join

I have two tables CustomerAddress(CustomerId, City, Country) and CustomerTransactions(TransactionId, CustomerId, CustomerContact). Here are the values in the tables: For CustomerAddress: 1001, El ...
0
votes
2answers
76 views

How to count each instance of distinct-values in XQuery?

I have an XML file with the following elements and attributes: <element> <unit id="1" color="blue"/> <unit id="2" color="blue"/> <unit id="3" color="red"/> </element> ...
0
votes
3answers
105 views

select distinct items from a column in powershell

If I issue following command in PowerShell, I get a lot of rows back. PS C:\Users\benh> get-command CommandType Name ModuleName ...
0
votes
1answer
24 views

XPath 2.0:reference earlier context in another part of the XPath expression

in an XPath I would like to focus on certain elements and analyse them: ... <field>aaa</field> ... <field>bbb</field> ... <field>aaa (1)</field> ... ...
0
votes
2answers
119 views

NSFetchRequest with distinct properties

I'm trying to get a distinct result from NSPredicate. My code: NSFetchRequest *request = [[NSFetchRequest alloc] init]; NSEntityDescription *entity = [NSEntityDescription ...
0
votes
2answers
125 views

MySQL: SELECT DISTINCT from multiple tables

I have database with several tables in it. For sake of example I will simplify it and try to explain in detail. One table is called Products, another called Brands, and the last one is called ...
0
votes
2answers
161 views

get distinct list between two lists c#

I have two lists of strings and I want to get the list of distinct values between them or remove the second list elements from the first list ? List<string> list1 = { "see","you","live"} ...
0
votes
0answers
73 views

TKinter: Reading Treeview Values

Let tree1 be a treeview widget, as such: tree1 = ttk.Treeview(content, columns=('Title 1', 'Title 2', 'Title 3', 'Title 4', 'Title 5')) If I'm interested in reading the values contained in a ...
0
votes
2answers
389 views

LINQ - Query with distinct/GroupBy on multiple properties problem

I have some data stored in an EntitySet of my domainContext where I want to select out just parts of it. Problem is that I'm getting all the CageNames - and not just the "New" ones with the highest ...
0
votes
1answer
284 views

How to use Distinct() in LINQ and how to pass own comparer

I am querying a table called STUDENT.I want to retrieve 2 values, the STUDENT_ID, and the TIME (Both are strings). However, I only want the distinct values of STUDENT_ID. When I use Distinct() with ...
0
votes
5answers
238 views

0, 0e0, 0.0, -0, +0, 000 all mean the same thing to Perl, why?

Just puzzling to me. Related, but different question: What does “0 but true” mean in Perl?
0
votes
2answers
94 views

MySQL get set of data with distinct values

I have a simple problem; one which I thought would have a simple solution. Imagine a Table like this: Name Timestamp Data Bob 2011-01-01 01:00:00 Hi Alice ...
0
votes
0answers
126 views

using distinct keyword in SQl query [closed]

Possible Duplicate: using distinct keyword in SQl query 0 down vote favorite I want to retrieve a table which has repeated values in column1, column2 and column3. column 4 has different ...
0
votes
1answer
793 views

Distinct values in data bound combobox

I have a table Inventory(ItemId,Name,Size,Price,otherinfo) where ItemId is primary key and Name,Size,Price are unique. When I bind the combobox with Name all repeated names appear while i want each ...
0
votes
3answers
111 views

MySQL How to Return Unique/Distinct Results?

I'm running the following MySQL query to find cars that don't have manuals (and have black wheels, etc.) SELECT `cars`.* FROM `cars` INNER JOIN wheels ON cars.id = wheels.car_id LEFT OUTER JOIN ...
0
votes
5answers
454 views

Select one distinct column, others can be non distinct. - MySQL

Ok I have a temporary table with 135000 rows, I'm trying to insert some of the values from this temporary table into other tables. This is the schema I'm using tvtemptable ...
0
votes
3answers
419 views

find duplicates in each array rails

<% @sp_references.each do |sp_ref| %> <% sp_ref.all_references.each_with_index do |tax_ref, i| %> <%if (tax_ref.reference.uniq) && (tax_ref.reference !~ /emend$/i) %> <%= ...
0
votes
2answers
194 views

How to get a dynamic list of distinct property values of a list?

I am trying to bind a ComboBox control to a list of strings extracted from a list of custom objects. Here is the object I'm using : public class Operation { public DateTime ValueDate { get; set; ...
0
votes
1answer
152 views

how to combine multiple true/false rows in MYSQL

I have a query with a join on a table containing various true/false columns. I can enforce DISTINCT & GROUP BY to ensure only single unique row gets returned, however the true/false rows do not ...

1 2