यदि आप तालिका से सभी डेटा हटाना चाहते हैं, तो आपका सिंटैक्स सही है:
truncate testResultTable;
या
truncate table testResultTable;
आपकी विशिष्ट आवश्यकताओं के आधार पर, यदि आपको तालिका से सही ढंग से छुटकारा पाने और फिर इसे फिर से बनाने की आवश्यकता है, तो आप यह कर सकते हैं:
drop table testResultTable;
create table testResultTable as select ... from ... where ...