テーブルからすべてのデータを削除する場合、構文は正しいです:
truncate testResultTable;
または
truncate table testResultTable;
特定のニーズに応じて、テーブルを正しく削除してから再作成する必要がある場合は、次のことができます。
drop table testResultTable;
create table testResultTable as select ... from ... where ...
テーブルからすべてのデータを削除する場合、構文は正しいです:
truncate testResultTable;
または
truncate table testResultTable;
特定のニーズに応じて、テーブルを正しく削除してから再作成する必要がある場合は、次のことができます。
drop table testResultTable;
create table testResultTable as select ... from ... where ...