0
votes
5answers
49 views
MySQL: Rewrite MSSQL with correlated subquery in FROM clause
We have a table that contains website page views, like:
time | page_id
----------|-----------------------------
1256645862| pageA
1256645889| pageB
1256647199| pageA
12566471 …
1
vote
4answers
59 views
Using DISTINCT in a CakePHP find function
Hello,
I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list. …
0
votes
1answer
26 views
Linq to NHibernate: Distinct
I am trying to get the following SQL output using Linq-to-NHibernate:
SELECT DISTINCT Name, at.Year FROM MyTable mt
INNER JOIN AnotherTable at ON at.Id = mt.AnotherTableId
The N …
0
votes
3answers
33 views
Get distinct month and year with SubSonic
I have date type column (MySQL):
SELECT invdate FROM invoices;
invdate
-------
2009-08-22
2009-07-12
2009-08-23
-------
and I want get month and year like this:
SELECT DISTINC …
7
votes
17answers
2k views
Is there any difference between Group By and Distinct
I learned something simple about SQL the other day:
SELECT c FROM myTbl GROUP BY C
Has the same result as:
SELECT DISTINCT C FROM myTble
What I am curious of, is there anythi …
1
vote
5answers
108 views
Removing duplicates from a list with “priority”
Given a collection of records like this:
string ID1;
string ID2;
string Data1;
string Data2;
// :
string DataN
Initially Data1..N are null, and can pretty much be ignored for th …
0
votes
4answers
81 views
Preventing duplicate matches in RegEx
The following code
string expression = "(\\{[0-9]+\\})";
RegexOptions options = ((RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline) | RegexOptions.IgnoreCase);
Regex …
0
votes
2answers
66 views
Why is Select distinct from function returning duplicates?
I tried two different variations on the same thing. The first version selects from freetexttable, the other insets into a temp table and selects from that. I've tried numerous va …
2
votes
2answers
70 views
LinQ distinct with custom comparer leaves duplicates
I've got the following classes:
public class SupplierCategory : IEquatable<SupplierCategory>
{
public string Name { get; set; }
public string Parent { get; set; }
…
1
vote
1answer
79 views
MySQL Count values based on multiple columns
I have two tables: a 'userlist' that has a 'grade' and 'userID' columns, and a 'login' table that records each time a user is logged in. The login table has a 'userID' column that …
1
vote
4answers
82 views
mysql distinct on 6 million rows takes 17 minutes to run? Can I speed this up?
I'm trying to get distinct id's out of a 6 million row table. The query is pretty simple, and the explain seems ok. The distict row is indexed as part of a grouped index of uid-dat …
0
votes
2answers
76 views
Skip first column and get distinct from other columns
I need to select distinct rows from Textfile display below.
TextFile
123| one| two| three <br/>
124| one| two| four <br/>
125| one |two| three <br/>
Outp …
9
votes
8answers
3k views
LINQ Select Distinct with Anonymous Types
So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly:
myObjectCollection. …
0
votes
3answers
96 views
Mysql Distinct Query returning all records
I have a table user_quotes with the fields quotes_id, quotes_user, quotes_desc, quotes_date, quotes_status, quotes_location. In this quotes_user allows duplication entries. when i …
1
vote
1answer
50 views
Retrieving one element and filter by another
Having tried and failed to modify the XSL from here: http://stackoverflow.com/questions/399204/xslt-distinct-elements-and-grouping
I'm posting here to ask if anyone could please h …
