Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Cách khai báo bảng Internal trong 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;

hoặc

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. Từ khóa MySQL AS

  2. Sử dụng một truy vấn duy nhất để lấy từ nhiều bảng

  3. NetSuite Migrations

  4. MySQL CAST - Cách nhập Cast trong MySQL

  5. MySQL Sắp xếp theo một số, Nulls cuối cùng