How to drop all contents from a table?

rkw12345

New member
Local time
Today, 13:15
Joined
May 21, 2004
Messages
8
Hello all,

I am in need of a fast way to drop all the contents from a table that has over 65,000 records, it is being refreshed weekly.

Any help is appreciated.

Thanks.
 
Delete query.


DELETE * FROM table-name ;

Or you can qualify it...

DELETE * FROM table-name WHERE field-1 = "XYZ" AND ... ;
 
Thank you very much, you have just saved me a morning each week that was used to empty various tables in our database.
 

Users who are viewing this thread

Back
Top Bottom