Faraz Khan wrote:
Hi Jorge,
If A,B and C are the key fields of Ztable, then a primary index is automatically created for Ztable.
This primary index will have all the key fields and if you write your select query on Ztable by using the key fields in the order, then your query will be faster than what it would be otherwise.
Below query would be faster:
SELECT * FROM ztable INTO TABLE lt_ztable
WHERE A =
AND B =
AND C =
Thanks,
Faraz Khan
Wrong.