Don't use CoreData to "fetch data from a sqlite database". If you need to "fetch data from a sqlite database" use FMDB or similar. FMDB is a wrapper around sqlite3 for iOS. You should be able to copy your select statements right across and wrap them into FMDB.
Using CoreData but thinking in SQL language only creates confusion. If you intent to use CoreData then better ignore the fact that CoreData is using a sqlite db as persistent storage and forget everything you know about sql language.
CoreData is an Object Graph framework not a database interface. It happens to store data to a sqlite db as default but from a programmer point of view the usage is in terms of objects. it is not in terms of rows and tables.
Coming back to FMDB. There, a database is opened with:
FMDatabase *theDatabase = [FMDatabase databaseWithPath:pathToDB];
Stored rows are retrieved with a select statement:
FMResultSet *setOfRows = [db executeQuery:@"select * from tableName where attribute = ?", @"some criteria'"];
Then iterate through the retrieved rows using a while:
while ([setOfRows next]) {
NSLog(@"%d %@ %@ %f", // simply print to the console
[rs intForColumn:@"integerColumn"],
[rs stringForColumn:@"attribute"],
[rs dateForColumn:@"dateColumn"],
[rs doubleForColumn:@"doubleValue"]);
}
You should be able to keep all the work that went into designing your database layout under android. Just wrap the access part. For more on the syntax there is a good readme at the github page for FMDB