Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So erstellen Sie eine TEMPORARY-Tabelle in Laravel

Versuchen Sie dies

// TEMPORÄRE TABELLE ERSTELLEN

$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );

// TEMPORÄRE TABELLE LÖSCHEN

$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );