Prova detta
// SKAPA TILLFÄLLIGT TABELL
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// RADERA TILLFÄLLIG TABELL
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );
Prova detta
// SKAPA TILLFÄLLIGT TABELL
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// RADERA TILLFÄLLIG TABELL
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );