I am developing one iPad application using storyboard and core data.I have no good idea about core data.I have 2 tables names A and B. Table a have 2 fields with names datacode and price.In table B there are two fields with names itemcode and text.Table A have set limit.
Table A
datacode price
p1 10
m1 17
p0 28
m3 20
w4 12
Table B
itemcode text
p0 car
p1 bus
m2 pen
m1 ball
p0 ban
r1 book
m3 pencil
n1 tv
w4 radio
The values in itemcode in tableB is the data code in the table A + some other value.i need to fetch the text values from the tableB based on the itemcodes which values corresponding to the datacode in the table A.I how can i fetch the text from B based on this criteria.