nice_true 0 Light Poster

Hi!

I wish to copy the records in a dataset into an aary?
How is this possible?


Secondly, I would like to know whether using "=" operator while comparing is better or using an "in" operator is better


For example,putting the following in a for loop

Select city from empinfo where role = 'a' (puttng, 'b','c','d', and so on in place of 'a')

is better or

Select city from empinfo where role in ('a','b','c','d') is better


Ins hort, whish of the following would take less time??