Jeśli chcesz usunąć wszystkie dane z tabeli, Twoja składnia jest poprawna:
truncate testResultTable;
lub
truncate table testResultTable;
W zależności od konkretnych potrzeb, jeśli chcesz poprawnie pozbyć się tabeli, a następnie ją ponownie utworzyć, możesz:
drop table testResultTable;
create table testResultTable as select ... from ... where ...