From a purely speed-performance standpoint,
would it be faster to read a set of data if each item had its own row (ie using a while loop), or if that dataset were packed into a single row, and then parsed in my script?
Assume updates are infrequent, and the table is very large/trafficed.
would it be faster to read a set of data if each item had its own row (ie using a while loop), or if that dataset were packed into a single row, and then parsed in my script?
Assume updates are infrequent, and the table is very large/trafficed.
Comment