SyntaxFix
Write A Post
Hire A Developer
Questions
When the table is very large, it's better to delete table itself with drop table TableName and recreate it, if one has create table query; rather than deleting records one by one, using delete from statement because that can be time consuming.
drop table TableName
delete from