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: 188

Filed under:
|
|
|
|

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

Related posts about sql

Related posts about mysql