Sybase ASE 入門 truncate table
普通です
truncate table ${table_name}
# test scripts
drop table tc create table tc (id varchar(1), name varchar(3)) select * from tc insert into tc values ('1', 'aaa') insert into tc values ('2', 'aaa') insert into tc values ('3', 'aaa') select * from tc truncate table tc select * from tc