ChatGPT解决这个技术问题 Extra ChatGPT

How to delete all the rows in a table using Eloquent?

My guess was to use the following syntax:

MyModel::all()->delete();

But that did not work. I'm sure it's super simple, but I've searched for documentation on the subject and can't find it!

In Laravel 7 and 8 you can do this

B
Basil Musa

The reason MyModel::all()->delete() doesn't work is because all() actually fires off the query and returns a collection of Eloquent objects.

You can make use of the truncate method, this works for Laravel 4 and 5:

MyModel::truncate();

That drops all rows from the table without logging individual row deletions.


Cool, didn't know about that one! Thanks! Just out of curiosity (and for future readers) is there a way to do a similar thing in Laravel 3? Or is there simply no supported way of deleting all rows in a table in Laravel 3 (other than resorting to PDO or something)?
Note: truncate() also resets any AUTO_INCREMENT counter (also note you can't truncate tables which have foreign key constraints.)
FYI: Turncate will not trigger delete events.
If you really want to use MyModel::all()->delete(), use foreach (MyModel::all() as $e) { $e->delete() }
Even after truncating the child table, Eloquent was still complaining that it cannot truncate the parent table because of foreign key reference. @Yauheni's answer below worked for me.
K
Ketav

Laravel 5.2+ solution.

Model::getQuery()->delete();

Just grab underlying builder with table name and do whatever. Couldn't be any tidier than that.

Laravel 5.6 solution

\App\Model::query()->delete();

In case anyone else was confused about why this works, the Model class forwards methods to the Builder via the __call magic method here. Because the model class itself has a delete method, calling Model::delete() calls the Model method, when you really want the Builder method. So to get the builder explicitly, you can use getQuery().
This also doesnt delete related tables if you want that.
It will force delete all records ,irrespective whether soft delete is on or off
Model::whereNotNull('id')->delete(); -- will do soft delete when soft delete is ON
h
hasan.hameed

You can use Model::truncate() if you disable foreign_key_checks (I assume you use MySQL).

DB::statement("SET foreign_key_checks=0");
Model::truncate();
DB::statement("SET foreign_key_checks=1");

In Laravel 4, you use DB::unprepared()
you can also use Schema::disableForeignKeyConstraints(); & Schema::enableForeignKeyConstraints();
g
giannis christofakis

I've seen both methods been used in seed files.

// Uncomment the below to wipe the table clean before populating

DB::table('table_name')->truncate();

//or

DB::table('table_name')->delete();

Even though you can not use the first one if you want to set foreign keys.

Cannot truncate a table referenced in a foreign key constraint

So it might be a good idea to use the second one.


delete obviously isn't the same as truncate though.
@sudopeople It would be really helpful to point the difference. I could also add it to my answer.
TRUNCATE can't be used in a transaction, as it's not affected by ROLLBACK. In that case, this can be achieved with (new MyModel)->newQuery()->delete().
O
Oscar Gallardo

There is an indirect way:

myModel:where('anyColumnName', 'like', '%%')->delete();

Example:

User:where('id', 'like' '%%')->delete();

Laravel query builder information: https://laravel.com/docs/5.4/queries


@aschipfl not much to explain actually. The code run the SQL DELETE FROM users WHERE id LIKE '%%' which matches all the rows in the table, thus deleting everything.
This got me on my way. I ended up doing a pluck() on another model to get an array of the ID's I needed, then used that array to delete all the records from my model using the whereIn method: $itemsAllContentIDs = Item::where('user_id', $userId)->pluck('item_content_id')->all(); ItemsContent::whereIn('id', $itemsAllContentIDs)->delete();
l
lookitsatravis

I wanted to add another option for those getting to this thread via Google. I needed to accomplish this, but wanted to retain my auto-increment value which truncate() resets. I also didn't want to use DB:: anything because I wanted to operate directly off of the model object. So, I went with this:

Model::whereNotNull('id')->delete();

Obviously the column will have to actually exists, but in a standard, out-of-the-box Eloquent model, the id column exists and is never null. I don't know if this is the best choice, but it works for my purposes.


Model::delete(); will accomplish the same thing.
Unfortunately Model::delete() throws an exception Non-static method Illuminate\Database\Eloquent\Model::delete() should not be called statically, at least in Laravel 5.0.
a
ali filali

simple solution:

 Mymodel::query()->delete();

This was already posted as a solution 18 months prior.
Use query()->forceDelete() if your model using concept Soft Delete.
D
Dave James Miller

I wasn't able to use Model::truncate() as it would error:

SQLSTATE[42000]: Syntax error or access violation: 1701 Cannot truncate a table referenced in a foreign key constraint

And unfortunately Model::delete() doesn't work (at least in Laravel 5.0):

Non-static method Illuminate\Database\Eloquent\Model::delete() should not be called statically, assuming $this from incompatible context

But this does work:

(new Model)->newQuery()->delete()

That will soft-delete all rows, if you have soft-delete set up. To fully delete all rows including soft-deleted ones you can change to this:

(new Model)->newQueryWithoutScopes()->forceDelete()

j
jfeid

You can try this one-liner which preserves soft-deletes also:

Model::whereRaw('1=1')->delete();

g
giannis christofakis

The best way for accomplishing this operation in Laravel 3 seems to be the use of the Fluent interface to truncate the table as shown below

DB::query("TRUNCATE TABLE mytable");

R
Riccardo Venturini

The problem with truncate is that it implies an immediate commit, so if use it inside a transaction the risk is that you find the table empty. The best solution is to use delete

MyModel::query()->delete();

S
Sidney

In a similar vein to Travis vignon's answer, I required data from the eloquent model, and if conditions were correct, I needed to either delete or update the model. I wound up getting the minimum and maximum I'd field returned by my query (in case another field was added to the table that would meet my selection criteria) along with the original selection criteria to update the fields via one raw SQL query (as opposed to one eloquent query per object in the collection).

I know the use of raw SQL violates laravels beautiful code philosophy, but itd be hard to stomach possibly hundreds of queries in place of one.


G
Ganesan J

In my case laravel 4.2 delete all rows ,but not truncate table

DB::table('your_table')->delete();


A
Alain Berrier

Solution who works with Lumen 5.5 with foreign keys constraints :

$categories = MusicCategory::all();
foreach($categories as $category)
{
$category->delete();

}
return response()->json(['error' => false]);