I need some advice, based on senario below:
Senario : I need to select around 1k(or 10k) records from tableA. One/some of the fields i need to change the original values, which refer to TableB and TableC particular fields value.
Method 1: Pre-Store all the information at TableB and TableC as array, before listing in TableA. When listing out records from tableA, I just refer the column value from the 2 array.
Method 2:I will use seperate SQL statement to select out the column value for each records, when listing in TableA.
Which method do you recommend?
Thank
Louis