Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como criar uma tabela TEMPORÁRIA em laravel


Tente isso

//CRIA TABELA TEMPORÁRIA
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );

// DELETE TABELA TEMPORÁRIA
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );