如何删除多个字段 laravel?
How to remove multiple filed laravel?
我有我的 table 数据:
id song_id playlist_id
1 2 5
2 2 4
如果我给
我想删除它
song_id playlist_id
2 4 success
2 3 fail
请帮助我谢谢
注意:我使用 laravel 自定义查询生成器
您可以使用
\DB::('table')->where('song_id',2)->where('playlist_id',4)->delete();
我有我的 table 数据:
id song_id playlist_id
1 2 5
2 2 4
如果我给
我想删除它song_id playlist_id
2 4 success
2 3 fail
请帮助我谢谢 注意:我使用 laravel 自定义查询生成器
您可以使用
\DB::('table')->where('song_id',2)->where('playlist_id',4)->delete();