Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
いくつかのクエリから結果を取得した後、それらの結果から作成された一時テーブルの名前はありますか???
いいえ。ただし、select ステートメントの結果から一時テーブルを簡単に作成できます。
CREATE TEMPORARY TABLE temptablename AS SELECT ...;
次に、結果を取得します。
SELECT * FROM temptablename;