请帮助我,
我想使用coredata编写查询(如下所述)。
select primKey, ( primKey - 5 ) as **d** from TABLE Order by **d** limit 1.
答案 0 :(得分:2)
你不能--CoreData不是ORM或数据库而且声称不是。它可以由SQL lite支持(或者可能不支持),但这是一个实现细节。
see some of the other times this has come up和here
您需要使用NSPredicate进行提取