delete all from table
Posted
by I__
on Stack Overflow
See other posts from Stack Overflow
or by I__
Published on 2010-06-08T20:12:26Z
Indexed on
2010/06/08
20:22 UTC
Read the original article
Hit count: 199
what's faster?
DELETE * FROM table_name;
or
DELETE * FROM table_name where 1=1;
why?
does truncate table
work in access?
© Stack Overflow or respective owner