Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Jak zadeklarować tabelę wewnętrzną w MySQL?

create temporary table tmp
(
id int unsigned not null,
name varchar(32) not null
)
engine=memory; -- change engine type if required e.g myisam/innodb

insert into tmp (id, name) select id, name from foo... ;

-- do more work...

select * from tmp order by id;

drop temporary table if exists tmp;

lub

create temporary table tmp engine=memory select id, name from foo... ;

-- do more work...

select * from tmp order by id;

drop temporary table if exists tmp;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak dodać wagi do tabeli MySQL i wybrać według nich losowe wartości?

  2. Obliczanie różnicy czasu w MySQL z uwzględnieniem zdarzeń

  3. Wiele instancji MySQL na jednej maszynie

  4. Losowy wiersz w MySQL

  5. Środowisko pracy MySQL