I have an URL pointing to content and I need to get highest value contained in one of the columns. Is there any aggregate function that will accomplish that or do I have to do this manually?
|
|
If you're querying an Android content provider, you should be able to achieve this by passing
Where Uri is the address of the content provider. This should return the single row with the highest value in COLUMN_NAME. |
||
|
|
|
|
Android's database uses SQLite, so |
||
|
