如何根据核心数据中的一个字段获得不同的结果

Posted

技术标签:

【中文标题】如何根据核心数据中的一个字段获得不同的结果【英文标题】:How to get distinct result based on one field from core data 【发布时间】:2017-05-30 14:53:36 【问题描述】:

我的核心数据表是这样的:

我想收到每个发件人的最新消息。所以结果应该是这样的:

这是我的代码:

    NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"MyCoreDataObject" inManagedObjectContext:moc];
    NSFetchRequest *request = [[NSFetchRequest alloc] init];
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"MESSAGE <> ''"];

    request.predicate = predicate;
    NSSortDescriptor *sd1 = [[NSSortDescriptor alloc] initWithKey:@"TIME" ascending:NO];
    NSArray *sortDescriptors = @[sd1];
    [request setSortDescriptors:sortDescriptors];
    [request setEntity:entityDescription];
    NSError *error;
    NSArray *msgs = [moc executeFetchRequest:request error:&error];

我将获得所有排序的数据(最新消息优先)。 但是如何根据发件人获得唯一值?所以只有每个发件人的最新消息?

基本上我需要这个 SQL 的等价物:

SELECT message, sender, MAX(time) as maxTime FROM myTable GROUP BY sender;

【问题讨论】:

【参考方案1】:

获取消息字段是困难的部分。

基本上,如果您使用 group by,您只能获取 group by (sender) 中的属性和带有表达式 (time) 的属性。

要获取所有其他值,您需要使用获取的值(发送者和时间)并执行另一个获取以从核心数据中获取它。

NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"MyCoreDataObject" inManagedObjectContext:moc];
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"message <> ''"];

request.predicate = predicate;
NSSortDescriptor *sd1 = [[NSSortDescriptor alloc] initWithKey:@"time" ascending:NO];
NSArray *sortDescriptors = @[sd1];
[request setSortDescriptors:sortDescriptors];
[request setEntity:entityDescription];

NSExpressionDescription *timestampExp = [[NSExpressionDescription alloc] init];
[timestampExp setExpression:[NSExpression expressionWithFormat:@"@max.time"]];
[timestampExp setName:@"time"];
[timestampExp setExpressionResultType:NSDateAttributeType];

[request setSortDescriptors:sortDescriptors];
[request setEntity:entityDescription];
[request setResultType:NSDictionaryResultType];
[request setPropertiesToGroupBy:[NSArray arrayWithObject:@"sender"]];
[request setPropertiesToFetch:[NSArray arrayWithObjects:@"sender", timestampExp, nil]];

NSError *error;
NSArray *msgs = [moc executeFetchRequest:request error:&error];
for (NSDictionary *msg in msgs) 
    request = [[NSFetchRequest alloc] init];
    predicate = [NSPredicate predicateWithFormat:@"message <> '' and sender = %@ and time = %@ ", msg[@"sender"], msg[@"time"]];

    request.predicate = predicate;
    [request setSortDescriptors:sortDescriptors];
    [request setEntity:entityDescription];
    NSDictionary *myMessage = [moc executeFetchRequest:request error:&error][0];


【讨论】:

以上是关于如何根据核心数据中的一个字段获得不同的结果的主要内容,如果未能解决你的问题,请参考以下文章

如何在redis中存储多个字段,并根据某些字段获得前10个结果

一个字段中的两个条件以获得一个结果

如何根据django查询中的日期获得等距离的行?

如何在 MySQL 的某个范围内获得结果,其中某些字段有字母?

sql中如何提取从数据库中所获得时间的年份

如何查询按核心数据中唯一值分组的值?