MySQL サーバでは、Sybase SQL 拡張機能
SELECT ... INTO TABLE ...
はまだサポートされていません。代わりに、SQL-99
構文 INSERT INTO ... SELECT ...
がサポートされています。これらは、基本的には同じです。
See 項6.4.3.1. 「INSERT ... SELECT
構文」。
INSERT INTO tblTemp2 (fldID) SELECT tblTemp1.fldOrder_ID FROM tblTemp1 WHERE tblTemp1.fldOrder_ID > 100;
また、SELECT INTO OUTFILE...
または
CREATE TABLE ... SELECT
を使用することもできます。
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.