Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Bagaimana cara mendeklarasikan tabel Internal di 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;

atau

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. Bagaimana cara menambah bidang di MySql menggunakan ON DUPLICATE KEY UPDATE saat memasukkan beberapa baris?

  2. Bagaimana cara mendapatkan catatan berikutnya di dalam kumpulan data hasil mysql?

  3. php / SQL - cetak banyak kata 4 kali di antara setiap 4 nama dengan banyak kondisi

  4. Cara mengurai data dari objek baris di node.js,express.js,mysql2

  5. MySQL:Kendala unik di beberapa bidang