Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can someone tell me that it is more efficient and faster when loading data:
load * from qvd where account_count = '5555.20' or
load * from qvd where match (account_count, '5555.20').
Which is more efficient or better?
If account_count is a numeric, then I would expect a numeric comparison to be faster as there is no need to convert to a number. Remove the quotes (where account_count = 5555.20). But whether there would be a meaningful difference - that would need to be tested.
Thank you for your response.
And in the case that information is text, what is better , example:
where AREA='HEALTH' OR where match(AREA, 'HEALTH').
What is more efficent
Why don't you just test all three and see which performs better for your requirement?