Using the Distinct keyword using https://parse.com/

I have Tablewith a name Scheduel_Deails, fields Schedule_Title, Schedule_Trackand many others

now record content data

("Title 1","Track 1")
("Title 1","Track 2")
("Title 1","Track 1")
("Title 1","Track 1")

Now i want a field Schedule_Track

t. Track 1and Track 2only .. Now, how to do this?

+4
source share
2 answers

Parse.com does not support single and aggregate queries. In this case, we must do this on the client side.

0
source

Check how many objects on the page are returned → something like self.ObjectperPage = 2. Or find cellForRowAtIndexPath and manipulate the cells based on the desired index.

- (PFQuery *) queryForTable.

0

Source: https://habr.com/ru/post/1533998/


All Articles