How can we drop some fields from the memory during script execution?
Answer Posted / Ankit Goel
"To remove fields from memory, you can use the DROP FIELDS statement within a LOAD or CREATE TABLE statement. For example:
CREATE TEMPORARY TABLE TempTable AS SELECT * FROM YourTable EXCEPT Col1, Col2; "
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers