The SQL DISTINCT keyword is used to remove duplicate values from a result of a query.
-1
votes
1answer
12 views
MySQL, get a sum from column after grouped by another column
I have a DB table votes that looks like
| id | val | against_id | created_at |
-----------------------------------------------------
A | 1 | B | xxx
B ...
0
votes
1answer
10 views
query distinct returns 5 fields but if 1 field not distinct but matches a certain number i want that in the result set
table1
att_id name tel
a1 Joe 123456
a2 Tom 456789
a3 mary 444444
a4 sue 333333
table 2
group_id desc att_id
5 red a1
10 blue a1
12 orange ...
0
votes
0answers
36 views
Excel 2010 - Count unique combination of the concatenation of two columns
I have two columns, they are adjacent, and I need to get a unique count of the resulting values from concatenating the two columns and need to relate them by the value of column A. For example:
ColA ...
1
vote
2answers
31 views
Code to collapse duplicate and semi-duplicate records?
I have a list of models of this type:
public class TourDude {
public int Id { get; set; }
public string Name { get; set; }
}
And here is my list:
public IEnumerable<TourDude> ...
1
vote
1answer
44 views
Implementing IEqualityComparer<T> on an object with two properties in C#
I have a case where I need to grab a bunch of items on distinct, but my source is a collection of objects with two properties, like this:
public class SkillRequirement
{
public string Skill { ...
0
votes
1answer
28 views
Use DISTINCT properly joining multiple tables
SELECT * FROM f_posts
INNER JOIN f_topics
ON f_posts.post_topic=f_topics.topic_id
INNER JOIN f_subcategories
ON f_subcategories.scat_id=f_topics.topic_scat
ORDER BY f_posts.post_date
DESC LIMIT 0,3
...
0
votes
0answers
17 views
Any solution for better performance about a cube with 3 distinct counts on the same source DB table on SQL Server 2008?
I have a big table about 180G for size and 4 billion rows on SQL server 2008R2 64bit.
So far, we partitioned source DB by ColumnA, and we have 3 distinct count on ColumnA, ColumnB and ColumnC, then ...
1
vote
1answer
13 views
Selecting distinct records not considering one field
I have a table with a composite primary key made of seven fields:
PK COD_LTN
PK COD_CANA
PK COD_FAM_PRO
PK COD_CTG_PRO
PK COD_PRO
PK COD_CFG_PRM_PRO
PK COD_FAM_PRM_PRO
I have for example these two ...
2
votes
2answers
46 views
How many distinct values are inside an array
Say you have an array like so :
int [] myArray = 1,2,3,1,4,2,6,1,5,3,6,1;
How can you calculate the amount of distinct values inside the array = 6 ?
0
votes
1answer
40 views
How to guess or determine a SQL identity field and avoid duplicate
I am trying to avoid duplicate updates to data, so I would like to know if there is a way to update only one row field without updating a piece of data in the subsequent row. So here it is the ...
-1
votes
1answer
31 views
Linq how to sort and select Distinc in the same line
I appreciate your indication about how to sort on the same line the next instruction.
Thank you very much!
this.ProductosUnicos = this.repository.TemperatureReports.AsEnumerable().Select(tt => ...
0
votes
1answer
22 views
Select Distinct with multi field
I have created a query that searches events by name. The result list years of event with same name (10/12/2012 to 04/30/2013). My question is how can I make my query just show the events have same ...
0
votes
2answers
43 views
MongoDB count() distinct in php
I am wondering how to count the number of results of this simple mongodb query, using php.
<?php
//connection to mongodb
$collection = new MongoCollection($db, 'User');
$retval = ...
0
votes
2answers
31 views
mysql count distinct num using with statment on too many rows
I have a table with many order record and each record has a column named phone used to indicate a user.
What I want to do is to count the distinct phone number in some date range. And my sql is like
...
1
vote
2answers
69 views
SQL Server count distinct entries in a column while showing the entire table
I recently ran into a problem regarding counting rows.
The table I'm using has many articles, each associated to a Movement, which in turn belongs to a User. Normally, to count how many distinct ...
0
votes
1answer
42 views
MySQL SELECT COUNT DISTINCT
I am getting from the below query
SELECT co.mobility_theme, COUNT(DISTINCT ca.user_id) AS n
FROM courses_apply AS ca LEFT JOIN dy41s_courses AS co ON ca.course_id = co.id
WHERE ca.submission IS ...
0
votes
1answer
26 views
Artificial Intelligence using sql query/stored procedure
I'm making an application that should organize employees to jobs.
One employee can't be in two jobs simultaneously.
Every employee has one or more qualifications.
Every job has one or more ...
1
vote
4answers
63 views
SQL get LAST record for each ID after some Date
I need help creating a SQL statement for retrieving LAST record after some date for each USERID in USER_LOG table.
I forgot to write there are few other columns in this table.
TABLE: USER_LOG
ID ...
0
votes
1answer
29 views
select distinct year from created date in mysql db table using cakephp 1.3
I have working sql query that returns one row for each year that there is a report. I need the syntax for cakephp 1.3 controller to achieve the same results.
SELECT DISTINCT Year( `dated` )
FROM ...
1
vote
1answer
34 views
How can I retrieve a distinct list of objects for each pair of django users?
I have a private user to user messaging model. (Photographer is a ForeignKey to the Django User)
class Message(models.Model):
sender = models.ForeignKey(Photographer)
recipient = ...
1
vote
2answers
32 views
Having trouble with Distinct(Coloumn_name)
I'm having problems with getting the correct data from my tables.
I've got a table with information on customers sending letters.
My table have following coloumbs( Name, Postalcode, Country, ...
0
votes
1answer
33 views
CouchDB-Lucene get distinct rows from search
I have duplicated rows in my Lucene's index and I whant to retreive only distinct datas with the search.
I think that I can't build the index without the duplicated datas because they are not stored ...
0
votes
0answers
12 views
No repeated contact from content://sms/inbox
I'm a newbie in Android development.
I'm doing a simple application to read the text messages of the phone.
I know how many problems there are around the content provider content://sms but... It's too ...
0
votes
1answer
21 views
How can I select distinct column based on max datetime (another column) also joining two tables in MySQL?
I've read many somewhat similar questions here and tried everything I can think of, without success. I think I've found the question based on a single table, or without the need for getting a ...
0
votes
1answer
70 views
php mysql sort by number of rows descending
can you help me
$sql="select * from table1 where id='1,2,3,4'";
{
$sql2="select distinct column1 from table2 where column2='".$row['id']."' and left(date,10) BETWEEN '".$date_from."' AND ...
1
vote
5answers
68 views
where do I put the distinct in in my code?
I have the following sql code:
select upper(regexp_substr(street1, '\S+$'))
but I don't know where I should put the distinct keyword to have unique values in the table, because I prints out many ...
1
vote
2answers
81 views
SQL “Count (Distinct…)” returns 1 less than actual data shows?
I have some data that doesn't appear to be counting correctly. When I look at the raw data I see 5 distinct values in a given column, but when I run an "Count (Distinct ColA)" it reports 4. This is ...
0
votes
1answer
43 views
LINQ select distinct, multiple columns
I've seen several other posts like this but can't quite work it out for my situation. If I have a forum with a number of posts, I want to get a list of the latest posts - but only one post per thread. ...
-2
votes
1answer
33 views
COUNT(DISTINCT Column1) for Only One Column of Multiple Columns
Admittedly, I've seen this question on here a few times -- but all the answers seem to solve their problems by using a GROUP BY or a WHERE, so I was curious how to get around this if your query is ...
0
votes
1answer
25 views
MYSQL issue howto count result in master table not including all rows from a Detail table “labels” used in a join
To simplify the question I am only using a few field in my test table example
Master db
Id Description type cost
'1', 'Test1', '2', '100'
'2', 'Test2', '2', '100'
'3', 'Test3', '3', '100'
'4', ...
1
vote
1answer
23 views
Using MYSQL's MD5() operation in a SELECT DISTINCT statement ignores the DISTINCT clause
So if I do this:
SELECT DISTINCT column_1, column_2, MD5(rand())
FROM table
I get n number of rows which is the correct number of distinct rows.
And if I do this:
SELECT DISTINCT column_1, ...
0
votes
2answers
35 views
MySQL select distinct and determine if only one user_id exists
I would like to run a query to show if there is one or more than one user_id for given poll_id.
Example 1: poll_id 1106 has only user_id 1 for all it's rows.
Example 2: poll_id 1106 has more than ...
0
votes
4answers
71 views
mysql: IF 'some columns value' is DISTINCT THEN flip boolean value
It seems that I'm asking a simple question but I haven't been able to find an answer that works for me. I hope you can help!
I'm writing a php script that takes some form data from an html-file ...
0
votes
1answer
39 views
get result seperated with commas in one row
this is the query i wrote:
select d.canonical_name,
l.locale_id,
d.domain_id,
ld.display_name,
p.canonical_name as Identity_Set
from locale_domain ld
join domain d on ...
0
votes
2answers
56 views
Getting distinct data in MySQL
At the moment I'm on the process of getting the counts of the unique email address in the database .
Table1
---------------------------------------------
id email name date_applied
...
0
votes
0answers
22 views
MongoDB PHP two array levels query
I'm finding difficulties to get a specific field from my database.
here's the structure:
"Start" : [
[
{
"A" : "blabla"
},
{
"B" : [
[
{
...
0
votes
3answers
35 views
How to delete records found with “distinct” in MongoDB?
I'm new to MongoDB, so I'm aware this is a really simple question, but I've looked everywhere and I can't find an answer? Basically I'm trying to find all records within a collection that contain the ...
-1
votes
2answers
47 views
how to count each values of a coloumn but different conditionals
i have table
nim jumlah jurusan angkatan word
310910022 2 teknik informatika 2009 create
310910022 2 teknik informatika 2009 ...
0
votes
0answers
35 views
Multiple Rows Appear when entering new column sql
This is the Code I have:
SELECT SAL_ORD_REL.SAL_ORD_CODE,
SAL_ORD_REL.QTY,
SAL_ORD_REL.SCH_SHIP_DATE,
SAL_ORD_REL.QTY_SHIP,
SAL_ORD_REL.PART_CODE,
...
0
votes
2answers
31 views
Selecting a COUNT of values, grouped by that same column, distinct on another
Here's a sample schema:
| type_id | university_id |
---------------------------
| 1 | u01 |
| 2 | u01 |
| 2 | u01 |
| 3 | u02 |
| 4 ...
1
vote
1answer
55 views
Select Count of ip and Count of DISTINCT ip in same query
I have a table structure like this:
TABLE NAME : counter
id | datetime | url | ip
-------------------------------------------
1 |2013-04-12 13:27:09 | url1 | ip01
2 ...
-1
votes
1answer
33 views
(MySQL) How do you get the no of unique values in a column from the resultant table of a Natural Join in a single query?
I have two Tables:
Employee
emp_id, emp_name, emp_dept, emp_sal
1 A A 1
2 B B 2
3 C C 3
4 D D ...
0
votes
1answer
26 views
Count Distinct Duplicates Within Groups in MySql
I have an SQL table called main_table:
id | product_id | purchase_id | purchaser_id
---+------------+-------------+-------------
1 | 1 | 1 | 1
2 | 1 | ...
0
votes
1answer
41 views
Select top records with unique ids
I have a query like this:
SELECT TOP(1000) UserId, Key, Value
FROM MyTable
WHERE Processed = 'false' ORDER BY TimeStamp"
I am iterating over the results and importing the data to an external ...
0
votes
3answers
31 views
How do I build a SQL Statement that selects multiple rows and sums the amount?
I'm recently working with DB/2 for an AS/400 and I ran across something that I am not really strong at. I have written this SQL Statement to bring back all of the fields that will bring back all the ...
0
votes
3answers
47 views
How to select distinct from just one table
I have a table with the following structure
view_id | user_agent | view_date | post_id | user_id
I would like to do a view-count for each post, however if a particular user read a particular ...
3
votes
2answers
56 views
First column in distinct select is default order if no order by clause is defined
While working I just noted SQL Server order by first, second columns in select list when it has distinct and it is not as per random order or in order records were created.
Can any one please ...
0
votes
2answers
109 views
SQL 2 columns in different tables as distinct
This has been resolved, I needed to join 4 tables in SQL with 2 columns in different tables as distinct. I would consistently get duplicate rows until now.
I have 4 Tables that I am trying to join ...
3
votes
1answer
47 views
SQL server,find distinct groups in a table
I have table
prdID item percentage
1 10 50
1 20 50
2 10 50
2 20 50
3 20 30
3 20 70
4 10 ...
0
votes
4answers
96 views
Order of oracle sql queries execution
I'm very new to Oracle. And I have a table and some queries here:
http://sqlfiddle.com/#!4/a7b7c/1
I wonder how the query:
select distinct name,id from test;
and
select name,id from test group ...





